Skip to main content

clifford_3_even/
lib.rs

1pub mod rotor;
2pub use rotor::Rotor;
3
4/// The X Pauli operator bivector (e₂₃)
5#[allow(non_upper_case_globals)]
6pub const Ix: Rotor = Rotor::new(0.0, 1.0, 0.0, 0.0);
7
8/// The Y Pauli operator bivector (e₃₁)
9#[allow(non_upper_case_globals)]
10pub const Iy: Rotor = Rotor::new(0.0, 0.0, 1.0, 0.0);
11
12/// The Z Pauli operator bivector (e₁₂)
13#[allow(non_upper_case_globals)]
14pub const Iz: Rotor = Rotor::new(0.0, 0.0, 0.0, 1.0);