-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
"""TKET2 is an open source quantum compiler developed by Quantinuum. | ||
Central to TKET2's design is its hardware agnosticism which allows researchers | ||
and quantum software developers to take advantage of its powerful compilation | ||
for many different quantum architectures. | ||
This is the Python front-end for TKET2, providing a high-level interface for | ||
working with quantum circuits. See also the Rust library with the same name on | ||
[crates.io](https://crates.io/crates/tket2). | ||
""" | ||
|
||
from . import circuit, ops, optimiser, passes, pattern, rewrite | ||
|
||
__all__ = ["circuit", "ops", "optimiser", "passes", "pattern", "rewrite"] |