mindquantum.core.gates.BitFlipChannel
- class mindquantum.core.gates.BitFlipChannel(p: float, **kwargs)[source]
A bit flip channel.
Bit flip channel express error that randomly flip the qubit (applies
gate) with probability , or do noting (applies gate) with probability .Bit flip channel applies noise as:
where
is quantum state as density matrix type; is the probability of applying an additional gate.Examples
>>> from mindquantum.core.gates import BitFlipChannel >>> from mindquantum.core.circuit import Circuit >>> circ = Circuit() >>> circ += BitFlipChannel(0.02).on(0) >>> print(circ) ╔═════════════╗ q0: ──╢ BFC(p=1/50) ╟─── ╚═════════════╝