Skip to content

Commit

Permalink
⚗️ try with mqt-core feature branch
Browse files Browse the repository at this point in the history
Signed-off-by: burgholzer <[email protected]>
  • Loading branch information
burgholzer committed Nov 9, 2023
1 parent eb9388d commit 5b9b8d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern/mqt-core
Submodule mqt-core updated 56 files
+4 −2 .pre-commit-config.yaml
+1 −1 docs/conf.py
+3 −1 docs/quickstart.ipynb
+1 −1 extern/boost/config
+1 −1 extern/googletest
+1 −1 extern/json
+11 −0 include/CircuitOptimizer.hpp
+38 −5 include/Definitions.hpp
+13 −24 include/QuantumComputation.hpp
+3 −3 include/dd/Complex.hpp
+1 −1 include/dd/ComputeTable.hpp
+3 −30 include/dd/DDDefinitions.hpp
+24 −16 include/dd/Package.hpp
+3 −3 include/dd/UniqueTable.hpp
+13 −0 include/operations/ClassicControlledOperation.hpp
+14 −0 include/operations/CompoundOperation.hpp
+49 −0 include/operations/Expression.hpp
+16 −0 include/operations/NonUnitaryOperation.hpp
+25 −0 include/operations/Operation.hpp
+18 −0 include/operations/SymbolicOperation.hpp
+9 −1 include/zx/FunctionalityConstruction.hpp
+1 −1 include/zx/Rules.hpp
+1 −1 include/zx/Simplify.hpp
+1 −1 include/zx/Utils.hpp
+0 −0 include/zx/ZXDefinitions.hpp
+1 −1 include/zx/ZXDiagram.hpp
+28 −6 pyproject.toml
+51 −17 src/CircuitOptimizer.cpp
+15 −19 src/QuantumComputation.cpp
+2 −2 src/dd/CachedEdge.cpp
+3 −3 src/dd/ComplexValue.cpp
+3 −3 src/dd/Edge.cpp
+1 −20 src/mqt/core/__init__.py
+2 −2 src/mqt/core/_compat/typing.py
+2 −0 src/mqt/core/_core/operations.pyi
+6 −0 src/mqt/core/_core/symbolic.pyi
+1 −3 src/mqt/core/operations.py
+23 −29 src/mqt/core/plugins/qiskit.py
+1 −1 src/mqt/core/symbolic.py
+3 −2 src/operations/NonUnitaryOperation.cpp
+4 −4 src/python/module.cpp
+5 −2 src/python/operations/register_operation.cpp
+3 −1 src/python/symbolic/register_expression.cpp
+3 −0 src/python/symbolic/register_term.cpp
+3 −1 src/python/symbolic/register_variable.cpp
+74 −30 src/zx/FunctionalityConstruction.cpp
+1 −1 src/zx/Rational.cpp
+1 −1 src/zx/Rules.cpp
+1 −1 src/zx/ZXDiagram.cpp
+22 −0 test/dd/test_package.cpp
+4 −6 test/python/test_qiskit.py
+31 −0 test/unittests/test_io.cpp
+110 −4 test/unittests/test_qfr_functionality.cpp
+1 −1 test/zx/test_rational.cpp
+1 −1 test/zx/test_zx.cpp
+3 −1 test/zx/test_zx_functionality.cpp

0 comments on commit 5b9b8d0

Please sign in to comment.