pub
pub
pub
pub
pub
pub
pub
/// A 32-bit complex number.
///
/// This is a type alias for [`num_complex::Complex<f32>`], matching the
/// precision Stim uses internally for gate arguments and unitary matrix
/// entries.
///
/// # Examples
///
/// ```
/// let z = stim::Complex32::new(1.0, -0.5);
/// assert_eq!(z.re, 1.0);
/// assert_eq!(z.im, -0.5);
/// ```
pub type Complex32 = Complex;
pub use upstream_commit;
pub use ;
pub use ;
pub use ;