1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Classical processing components /// Classical processor for hybrid quantum-classical algorithms pub struct ClassicalProcessor; impl ClassicalProcessor { pub fn new() -> Self { Self } } impl Default for ClassicalProcessor { fn default() -> Self { Self::new() } }