├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── doc └── latex │ └── yquant │ ├── qasm │ ├── test1.qasm │ ├── test10.qasm │ ├── test11.qasm │ ├── test12.qasm │ ├── test13.qasm │ ├── test14.qasm │ ├── test15.qasm │ ├── test16.qasm │ ├── test17.qasm │ ├── test18.qasm │ ├── test2.qasm │ ├── test3.qasm │ ├── test4.qasm │ ├── test5.qasm │ ├── test6.qasm │ ├── test7.qasm │ ├── test8.qasm │ └── test9.qasm │ ├── yquant-doc.pdf │ └── yquant-doc.tex ├── markdown ├── ex-01.png ├── ex-01.tex ├── ex-02.png ├── ex-02.tex ├── ex-03.png ├── ex-03.tex ├── ex-04.png ├── ex-04.tex ├── ex-05.png ├── ex-05.tex ├── ex-06.png └── ex-06.tex └── tex └── latex └── yquant ├── yquant-circuit.tex ├── yquant-config.tex ├── yquant-draw.tex ├── yquant-env.tex ├── yquant-lang.tex ├── yquant-langhelper.tex ├── yquant-prepare.tex ├── yquant-registers.tex ├── yquant-shapes.tex ├── yquant-tools.tex ├── yquant.sty ├── yquantlanguage-groups.sty └── yquantlanguage-qasm.sty /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/README.md -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test1.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test1.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test10.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test10.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test11.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test11.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test12.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test12.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test13.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test13.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test14.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test14.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test15.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test15.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test16.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test16.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test17.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test17.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test18.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test18.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test2.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test2.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test3.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test4.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test4.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test5.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test6.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test6.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test7.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test7.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test8.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/qasm/test9.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/qasm/test9.qasm -------------------------------------------------------------------------------- /doc/latex/yquant/yquant-doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/yquant-doc.pdf -------------------------------------------------------------------------------- /doc/latex/yquant/yquant-doc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/doc/latex/yquant/yquant-doc.tex -------------------------------------------------------------------------------- /markdown/ex-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-01.png -------------------------------------------------------------------------------- /markdown/ex-01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-01.tex -------------------------------------------------------------------------------- /markdown/ex-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-02.png -------------------------------------------------------------------------------- /markdown/ex-02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-02.tex -------------------------------------------------------------------------------- /markdown/ex-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-03.png -------------------------------------------------------------------------------- /markdown/ex-03.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-03.tex -------------------------------------------------------------------------------- /markdown/ex-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-04.png -------------------------------------------------------------------------------- /markdown/ex-04.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-04.tex -------------------------------------------------------------------------------- /markdown/ex-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-05.png -------------------------------------------------------------------------------- /markdown/ex-05.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-05.tex -------------------------------------------------------------------------------- /markdown/ex-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-06.png -------------------------------------------------------------------------------- /markdown/ex-06.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/markdown/ex-06.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-circuit.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-circuit.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-config.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-config.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-draw.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-draw.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-env.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-env.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-lang.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-lang.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-langhelper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-langhelper.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-prepare.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-prepare.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-registers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-registers.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-shapes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-shapes.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant-tools.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant-tools.tex -------------------------------------------------------------------------------- /tex/latex/yquant/yquant.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquant.sty -------------------------------------------------------------------------------- /tex/latex/yquant/yquantlanguage-groups.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquantlanguage-groups.sty -------------------------------------------------------------------------------- /tex/latex/yquant/yquantlanguage-qasm.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projekter/yquant/HEAD/tex/latex/yquant/yquantlanguage-qasm.sty --------------------------------------------------------------------------------