rquant 0.0.3

A quantum computing library for qubit manipulation and observation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// [`setup`] contains common functionality for each test.
pub fn setup() {
    // suppress the stack trace output for tests that should fail.
    std::panic::set_hook(Box::new(|_| {}));
}

#[cfg(test)]
mod quantum {
    mod quantum_gate;
    mod quantum_position;
    mod qubit;
    mod qubit_register;
}