-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate DD package functionality (#75)
* ♻️ factor out the DD operations * ♻️ extract `Simulation` and `FunctionalityConstruction` for decision diagrams * 🎨 add some `const` where appropriate * 🎨 fix file header links * 🎨 use `#pragma once` * 🔖 v1.10.0
- Loading branch information
1 parent
1a8da60
commit cd15b3e
Showing
66 changed files
with
1,321 additions
and
1,346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule dd_package
updated
23 files
+2 −1 | CMakeLists.txt | |
+1 −1 | extern/googletest | |
+1 −1 | include/dd/Complex.hpp | |
+1 −1 | include/dd/ComplexCache.hpp | |
+1 −1 | include/dd/ComplexNumbers.hpp | |
+1 −1 | include/dd/ComplexTable.hpp | |
+1 −1 | include/dd/ComplexValue.hpp | |
+1 −1 | include/dd/ComputeTable.hpp | |
+1 −1 | include/dd/Control.hpp | |
+1 −1 | include/dd/Definitions.hpp | |
+1 −1 | include/dd/Edge.hpp | |
+18 −18 | include/dd/Export.hpp | |
+1 −1 | include/dd/GateMatrixDefinitions.hpp | |
+47 −0 | include/dd/Node.hpp | |
+1 −1 | include/dd/NoiseOperationTable.hpp | |
+93 −99 | include/dd/Package.hpp | |
+1 −1 | include/dd/ToffoliTable.hpp | |
+1 −1 | include/dd/UnaryComputeTable.hpp | |
+1 −1 | include/dd/UniqueTable.hpp | |
+30 −30 | test/bench_package.cpp | |
+5 −5 | test/main.cpp | |
+1 −1 | test/test_complex.cpp | |
+80 −80 | test/test_package.cpp |
Submodule json
updated
40 files
Submodule pybind11
updated
6 files
+5 −0 | .github/workflows/ci.yml | |
+9 −5 | include/pybind11/detail/type_caster_base.h | |
+3 −2 | include/pybind11/eigen.h | |
+5 −4 | include/pybind11/numpy.h | |
+6 −6 | include/pybind11/pybind11.h | |
+34 −32 | include/pybind11/pytypes.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.