Skip to content

Commit

Permalink
Bump the submodules group with 1 update
Browse files Browse the repository at this point in the history
Bumps the submodules group with 1 update: [cpp/mqt-core](https://github.com/cda-tum/mqt-core).

- [Release notes](https://github.com/cda-tum/mqt-core/releases)
- [Commits](cda-tum/mqt-core@6c47062...b78e022)

---
updated-dependencies:
- dependency-name: cpp/mqt-core
  dependency-type: direct:production
  dependency-group: submodules
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 17, 2023
1 parent f4792a5 commit a1ecaf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/mqt-core
Submodule mqt-core updated 81 files
+0 −2 .cirrus.yml
+2 −4 .github/codecov.yml
+0 −4 .github/codeql-config.yml
+20 −1 .github/dependabot.yml
+17 −2 .github/workflows/cd.yml
+2 −2 .github/workflows/release-drafter.yml
+7 −2 .github/workflows/reusable-change-detection.yml
+25 −2 .github/workflows/reusable-code-ql-cpp.yml
+26 −3 .github/workflows/reusable-code-ql-python.yml
+35 −0 .github/workflows/reusable-code-ql.yml
+38 −0 .github/workflows/reusable-cpp-ci.yml
+36 −9 .github/workflows/reusable-cpp-coverage.yml
+28 −5 .github/workflows/reusable-cpp-linter.yml
+22 −3 .github/workflows/reusable-cpp-tests-macos.yml
+22 −3 .github/workflows/reusable-cpp-tests-ubuntu.yml
+22 −3 .github/workflows/reusable-cpp-tests-windows.yml
+71 −1 .github/workflows/reusable-python-ci.yml
+30 −10 .github/workflows/reusable-python-coverage.yml
+21 −2 .github/workflows/reusable-python-linter.yml
+28 −26 .github/workflows/reusable-python-packaging.yml
+16 −4 .github/workflows/reusable-python-tests.yml
+0 −5 .gitmodules
+21 −19 .pre-commit-config.yaml
+14 −6 CMakeLists.txt
+13 −10 README.md
+4 −1 cmake/CompilerOptions.cmake
+5 −0 cmake/StandardProjectSettings.cmake
+1 −1 docs/index.md
+1 −1 extern/boost/config
+1 −1 extern/boost/multiprecision
+1 −1 extern/googletest
+0 −1 extern/pybind11
+27 −25 include/dd/ComputeTable.hpp
+28 −32 include/dd/DensityNoiseTable.hpp
+1 −0 include/dd/Edge.hpp
+9 −42 include/dd/MemoryManager.hpp
+4 −0 include/dd/Node.hpp
+22 −10 include/dd/NoiseFunctionality.hpp
+43 −187 include/dd/Package.hpp
+1 −1 include/dd/RealNumberUniqueTable.hpp
+20 −30 include/dd/StochasticNoiseOperationTable.hpp
+27 −30 include/dd/UnaryComputeTable.hpp
+100 −35 include/dd/UniqueTable.hpp
+0 −94 include/dd/UniqueTableStatistics.hpp
+66 −0 include/dd/statistics/MemoryManagerStatistics.hpp
+293 −0 include/dd/statistics/PackageStatistics.hpp
+32 −0 include/dd/statistics/Statistics.hpp
+68 −0 include/dd/statistics/TableStatistics.hpp
+28 −0 include/dd/statistics/UniqueTableStatistics.hpp
+13 −1 include/operations/ClassicControlledOperation.hpp
+42 −0 include/operations/CompoundOperation.hpp
+35 −0 include/operations/NonUnitaryOperation.hpp
+32 −5 include/operations/Operation.hpp
+26 −0 include/operations/StandardOperation.hpp
+6 −0 include/operations/SymbolicOperation.hpp
+74 −15 noxfile.py
+12 −11 pyproject.toml
+11 −2 src/CMakeLists.txt
+15 −25 src/CircuitOptimizer.cpp
+1 −1 src/algorithms/QPE.cpp
+4 −1 src/dd/CMakeLists.txt
+2 −2 src/dd/ComplexNumbers.cpp
+7 −0 src/dd/Edge.cpp
+15 −25 src/dd/MemoryManager.cpp
+13 −11 src/dd/RealNumberUniqueTable.cpp
+0 −55 src/dd/UniqueTableStatistics.cpp
+97 −0 src/dd/statistics/MemoryManagerStatistics.cpp
+11 −0 src/dd/statistics/Statistics.cpp
+64 −0 src/dd/statistics/TableStatistics.cpp
+29 −0 src/dd/statistics/UniqueTableStatistics.cpp
+7 −0 src/operations/NonUnitaryOperation.cpp
+91 −0 src/operations/StandardOperation.cpp
+60 −0 src/operations/SymbolicOperation.cpp
+3 −9 src/python/CMakeLists.txt
+1 −1 src/python/qiskit/QasmQobjExperiment.cpp
+1 −1 src/python/qiskit/QuantumCircuit.cpp
+17 −16 test/dd/test_complex.cpp
+0 −3 test/dd/test_dd_functionality.cpp
+79 −20 test/dd/test_package.cpp
+5 −0 test/python/constraints.txt
+306 −9 test/unittests/test_qfr_functionality.cpp

0 comments on commit a1ecaf8

Please sign in to comment.