Skip to content

Commit

Permalink
Bump cpp/mqt-core from 04b2082 to b1c49b9 (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jul 14, 2023
1 parent 9039717 commit 4bfa283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/mqt-core
Submodule mqt-core updated 51 files
+1 −1 .github/workflows/cpp-linter.yml
+1 −1 .github/workflows/emulated-wheels.yml
+1 −1 .github/workflows/wheels.yml
+5 −5 .pre-commit-config.yaml
+4 −0 .readthedocs.yaml
+7 −3 cmake/CompilerOptions.cmake
+3 −0 include/Definitions.hpp
+8 −6 include/dd/Complex.hpp
+0 −109 include/dd/ComplexCache.hpp
+123 −54 include/dd/ComplexNumbers.hpp
+0 −534 include/dd/ComplexTable.hpp
+1 −1 include/dd/ComplexValue.hpp
+2 −2 include/dd/ComputeTable.hpp
+0 −59 include/dd/Control.hpp
+0 −0 include/dd/DDDefinitions.hpp
+1 −1 include/dd/DensityNoiseTable.hpp
+8 −17 include/dd/Edge.hpp
+30 −30 include/dd/Export.hpp
+2 −2 include/dd/GateMatrixDefinitions.hpp
+233 −0 include/dd/MemoryManager.hpp
+102 −136 include/dd/Node.hpp
+54 −113 include/dd/NoiseFunctionality.hpp
+6 −27 include/dd/Operations.hpp
+470 −433 include/dd/Package.hpp
+245 −0 include/dd/RealNumber.hpp
+212 −0 include/dd/RealNumberUniqueTable.hpp
+1 −1 include/dd/StochasticNoiseOperationTable.hpp
+0 −103 include/dd/ToffoliTable.hpp
+1 −1 include/dd/UnaryComputeTable.hpp
+126 −235 include/dd/UniqueTable.hpp
+94 −0 include/dd/UniqueTableStatistics.hpp
+2 −0 include/operations/StandardOperation.hpp
+5 −3 src/dd/CMakeLists.txt
+23 −18 src/dd/Complex.cpp
+0 −88 src/dd/ComplexCache.cpp
+114 −93 src/dd/ComplexNumbers.cpp
+0 −490 src/dd/ComplexTable.cpp
+27 −29 src/dd/ComplexValue.cpp
+44 −0 src/dd/Edge.cpp
+137 −0 src/dd/MemoryManager.cpp
+90 −3 src/dd/Node.cpp
+122 −0 src/dd/RealNumber.cpp
+310 −0 src/dd/RealNumberUniqueTable.cpp
+6 −6 src/dd/Simulation.cpp
+49 −0 src/dd/UniqueTableStatistics.cpp
+6 −6 test/algorithms/test_grover.cpp
+26 −26 test/algorithms/test_qft.cpp
+236 −190 test/dd/test_complex.cpp
+12 −12 test/dd/test_dd_functionality.cpp
+47 −78 test/dd/test_dd_noise_functionality.cpp
+59 −144 test/dd/test_package.cpp

0 comments on commit 4bfa283

Please sign in to comment.