2 个版本

0.1.1 2022年7月13日
0.1.0 2022年7月13日

#305模拟

MIT/Apache

18KB
472 代码行

// Create a bell state, or EPR pair, a superposition of qubits 0 and 1
let mut state = State::new(2);
state.h(0);
state.cx(0, 1);
state.measure(1);

println!("{state}");
println!("{}", state.ket());

依赖项

~315KB