Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clifford representation incorporating global phase #1667

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pytket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def requirements(self):
self.requires("pybind11_json/0.2.14")
self.requires("symengine/0.13.0")
self.requires("tkassert/0.3.4@tket/stable")
self.requires("tket/1.3.53@tket/stable")
self.requires("tket/1.3.54@tket/stable")
self.requires("tklog/0.3.3@tket/stable")
self.requires("tkrng/0.3.3@tket/stable")
self.requires("tktokenswap/0.3.9@tket/stable")
Expand Down
3 changes: 3 additions & 0 deletions tket/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,11 @@ target_sources(tket
src/Circuit/SubcircuitFinder.cpp
src/Circuit/ThreeQubitConversion.cpp
src/Circuit/ToffoliBox.cpp
src/Clifford/APState.cpp
src/Clifford/ChoiMixTableau.cpp
src/Clifford/SymplecticTableau.cpp
src/Clifford/UnitaryTableau.cpp
src/Converters/APStateConverters.cpp
src/Converters/ChoiMixTableauConverters.cpp
src/Converters/Gauss.cpp
src/Converters/PauliGraphConverters.cpp
Expand Down Expand Up @@ -324,6 +326,7 @@ target_sources(tket
include/tket/Circuit/StatePreparation.hpp
include/tket/Circuit/ThreeQubitConversion.hpp
include/tket/Circuit/ToffoliBox.hpp
include/tket/Clifford/APState.hpp
include/tket/Clifford/ChoiMixTableau.hpp
include/tket/Clifford/SymplecticTableau.hpp
include/tket/Clifford/UnitaryTableau.hpp
Expand Down
2 changes: 1 addition & 1 deletion tket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

class TketConan(ConanFile):
name = "tket"
version = "1.3.53"
version = "1.3.54"
package_type = "library"
license = "Apache 2"
homepage = "https://github.com/CQCL/tket"
Expand Down
Loading
Loading