quizx 0.3.0

Quantum Circuit Optimisation and Compilation using the ZX-calculus
Documentation
1
2
3
4
5
6
7
8
use crate::circuit::*;

impl Circuit {
    /// Implements (roughly) `basic_optimization` from pyzx
    pub fn optimize(&mut self) {
        panic!("Not implemented.");
    }
}