Skip to main content

lift_quantum/
lib.rs

1//! LIFT Quantum: Quantum computing dialect for the LIFT compiler framework.
2//!
3//! Provides 50+ quantum gates (IBM, Rigetti, IonQ, Quantinuum native sets),
4//! noise models, Kraus channels, quantum error correction codes, and device
5//! topology representations with shortest-path routing.
6
7pub mod dialect;
8pub mod gates;
9pub mod kraus;
10pub mod noise;
11pub mod qec;
12pub mod topology;
13pub mod types;
14
15pub use dialect::QuantumDialect;
16pub use gates::*;
17pub use kraus::*;
18pub use noise::*;
19pub use qec::*;
20pub use topology::*;
21pub use types::*;