Skip to content

Commit

Permalink
⬆️ update mqt-core
Browse files Browse the repository at this point in the history
Signed-off-by: burgholzer <[email protected]>
  • Loading branch information
burgholzer committed Jan 5, 2024
1 parent 15385e0 commit 0c9c644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern/mqt-core
Submodule mqt-core updated 76 files
+1 −1 .cirrus.yml
+0 −1 .github/codecov.yml
+0 −11 .github/dependabot.yml
+0 −25 .gitmodules
+0 −2 .pre-commit-config.yaml
+0 −4 .readthedocs.yaml
+5 −17 CMakeLists.txt
+9 −0 README.md
+0 −10 cmake/CheckSubmodule.cmake
+142 −0 cmake/ExternalDependencies.cmake
+1 −6 docs/DevelopmentGuide.md
+10 −25 docs/quickstart.ipynb
+3 −3 eval/eval_dd_package.cpp
+0 −1 extern/boost/config
+0 −1 extern/boost/multiprecision
+0 −1 extern/googletest
+0 −1,018 extern/hls_colorwheel.svg
+0 −1 extern/json
+0 −1 extern/pybind11_json
+12 −3 include/Definitions.hpp
+25 −0 include/QuantumComputation.hpp
+1 −1 include/dd/Benchmark.hpp
+6 −10 include/dd/FunctionalityConstruction.hpp
+65 −74 include/dd/Operations.hpp
+12 −14 include/dd/Simulation.hpp
+1 −1 include/dd/UniqueTable.hpp
+1 −2 include/dd/statistics/PackageStatistics.hpp
+2 −1 include/dd/statistics/Statistics.hpp
+2 −0 include/operations/StandardOperation.hpp
+3 −3 include/parsers/qasm3_parser/Exception.hpp
+2 −2 include/python/pybind11.hpp
+1 −1 include/python/qiskit/QuantumCircuit.hpp
+0 −9 pyproject.toml
+0 −46 src/CMakeLists.txt
+3 −3 src/QuantumComputation.cpp
+4 −4 src/dd/Benchmark.cpp
+0 −1 src/dd/CMakeLists.txt
+62 −68 src/dd/FunctionalityConstruction.cpp
+6 −6 src/dd/Operations.cpp
+51 −53 src/dd/Simulation.cpp
+1 −1 src/dd/statistics/MemoryManagerStatistics.cpp
+1 −1 src/dd/statistics/Statistics.cpp
+1 −1 src/dd/statistics/TableStatistics.cpp
+2 −1 src/dd/statistics/UniqueTableStatistics.cpp
+0 −1 src/ecc/CMakeLists.txt
+4 −2 src/mqt/core/_core/__init__.pyi
+5 −5 src/mqt/core/_core/operations.pyi
+8 −3 src/mqt/core/io.py
+60 −25 src/operations/StandardOperation.cpp
+0 −12 src/python/CMakeLists.txt
+2 −3 src/python/operations/register_operation.cpp
+16 −23 src/python/register_quantum_computation.cpp
+1 −1 src/python/symbolic/register_expression.cpp
+5 −20 src/zx/CMakeLists.txt
+2 −17 test/CMakeLists.txt
+24 −20 test/algorithms/eval_dynamic_circuits.cpp
+2 −2 test/algorithms/test_bernsteinvazirani.cpp
+1 −1 test/algorithms/test_grcs.cpp
+1 −1 test/algorithms/test_qft.cpp
+6 −6 test/algorithms/test_qpe.cpp
+0 −1 test/algorithms/test_wstate.cpp
+1 −1 test/dd/test_complex.cpp
+88 −34 test/dd/test_dd_functionality.cpp
+4 −4 test/dd/test_dd_noise_functionality.cpp
+1 −1 test/dd/test_edge_functionality.cpp
+1 −1 test/dd/test_package.cpp
+32 −2 test/python/test_io.py
+2 −2 test/unittests/test_ecc_functionality.cpp
+27 −33 test/unittests/test_io.cpp
+201 −534 test/unittests/test_qasm3_parser.cpp
+6 −6 test/unittests/test_qfr_functionality.cpp
+1 −1 test/zx/test_expression.cpp
+1 −1 test/zx/test_rational.cpp
+1 −1 test/zx/test_simplify.cpp
+1 −1 test/zx/test_zx.cpp
+17 −19 test/zx/test_zx_functionality.cpp

0 comments on commit 0c9c644

Please sign in to comment.