├── Examples.nb ├── LICENSE ├── Makefile ├── NOTICE ├── Overview.png ├── QASMConverter ├── NOTICE └── qasm_converter.py ├── README.md ├── UNSTABLE ├── CircuitParser │ ├── CircuitParser │ │ ├── CircuitParser.py │ │ └── Gates.py │ └── setup.py ├── MathematicaLink │ ├── mlinkmodule.c │ └── setup.py └── QSimplify │ ├── QSimplify │ └── Pythematica.py │ └── setup.py ├── Unit_tests.m └── UniversalQCompiler.m /Examples.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/Examples.nb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/NOTICE -------------------------------------------------------------------------------- /Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/Overview.png -------------------------------------------------------------------------------- /QASMConverter/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/QASMConverter/NOTICE -------------------------------------------------------------------------------- /QASMConverter/qasm_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/QASMConverter/qasm_converter.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/README.md -------------------------------------------------------------------------------- /UNSTABLE/CircuitParser/CircuitParser/CircuitParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/UNSTABLE/CircuitParser/CircuitParser/CircuitParser.py -------------------------------------------------------------------------------- /UNSTABLE/CircuitParser/CircuitParser/Gates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/UNSTABLE/CircuitParser/CircuitParser/Gates.py -------------------------------------------------------------------------------- /UNSTABLE/CircuitParser/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/UNSTABLE/CircuitParser/setup.py -------------------------------------------------------------------------------- /UNSTABLE/MathematicaLink/mlinkmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/UNSTABLE/MathematicaLink/mlinkmodule.c -------------------------------------------------------------------------------- /UNSTABLE/MathematicaLink/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/UNSTABLE/MathematicaLink/setup.py -------------------------------------------------------------------------------- /UNSTABLE/QSimplify/QSimplify/Pythematica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/UNSTABLE/QSimplify/QSimplify/Pythematica.py -------------------------------------------------------------------------------- /UNSTABLE/QSimplify/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/UNSTABLE/QSimplify/setup.py -------------------------------------------------------------------------------- /Unit_tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/Unit_tests.m -------------------------------------------------------------------------------- /UniversalQCompiler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q-Compiler/UniversalQCompiler/HEAD/UniversalQCompiler.m --------------------------------------------------------------------------------