-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
07cdf9d
commit 6e7ce69
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule mqt-core
updated
24 files
+1 −1 | .github/workflows/emulated-wheels.yml | |
+1 −1 | .github/workflows/wheels.yml | |
+3 −3 | .pre-commit-config.yaml | |
+3 −2 | include/CircuitOptimizer.hpp | |
+2 −3 | include/QuantumComputation.hpp | |
+10 −0 | include/algorithms/WState.hpp | |
+1 −2 | include/dd/FunctionalityConstruction.hpp | |
+1 −2 | include/dd/Operations.hpp | |
+6 −31 | include/operations/NonUnitaryOperation.hpp | |
+1 −9 | include/operations/OpType.hpp | |
+4 −0 | include/operations/Operation.hpp | |
+2 −0 | src/CMakeLists.txt | |
+22 −35 | src/CircuitOptimizer.cpp | |
+8 −8 | src/QuantumComputation.cpp | |
+25 −0 | src/algorithms/WState.cpp | |
+2 −3 | src/dd/Operations.cpp | |
+26 −116 | src/operations/NonUnitaryOperation.cpp | |
+8 −0 | src/operations/Operation.cpp | |
+15 −7 | src/operations/StandardOperation.cpp | |
+3 −21 | src/parsers/QASMParser.cpp | |
+2 −1 | test/CMakeLists.txt | |
+42 −0 | test/algorithms/test_wstate.cpp | |
+1 −1 | test/dd/test_dd_functionality.cpp | |
+0 −2 | test/unittests/test_qfr_functionality.cpp |