pub trait IntoPauliMixture {
// Required method
fn into_pauli_mixture(self) -> Vec<(f64, Vec<Pauli>)>;
}Expand description
A type that can be converted into a mixture of Pauli operators.
pub trait IntoPauliMixture {
// Required method
fn into_pauli_mixture(self) -> Vec<(f64, Vec<Pauli>)>;
}A type that can be converted into a mixture of Pauli operators.