1//! Definitions of circuit-normal syntax. 2//! 3//! Circuit-normal syntax is designed to allow extraction to Hadamard/Controlled phase circuits. 4 5pub mod term; 6pub use term::TermC; 7 8pub mod pattern;