pub struct PauliOperator { /* private fields */ }
Expand description

A Pauli operator optimized for sparse operations.

A Pauli operator is a string of Paulis such as IXIX or XIYIZ. However, we usually only care about the non-identity positions and we refer to the previous as operators as X_1 X_3 and X_0 Y_2 Z_4.

Implementations

Builds a new Pauli Operator.

To build an operator, we specify the length, the position of non-identity elements and their values.

Exemple

This creates the XIYIZ operator.

let operator = PauliOperator::new(5, vec![0, 2, 4], vec![X, Y, Z]);
Panic

Panics if a position is greater or equal to the length or if the number of positions and Paulis are different.

Builds a new Pauli Operator or returns an error if either a position is greater or equal to the length or if the numbers of positions and Paulis are different.

Exemple

This creates the XIYIZ operator.

let operator = PauliOperator::try_new(5, vec![0, 2, 4], vec![X, Y, Z]);
assert!(operator.is_ok());

Creates a Pauli operator of zero length.

Checks if two operators commute.

If an operator is smaller than the other, it is padded with identities.

Example
let op1 = PauliOperator::new(5, vec![1, 2, 3], vec![X, Y, Z]);
let op2 = PauliOperator::new(5, vec![2, 3, 4], vec![X, X, X]);
let op3 = PauliOperator::new(5, vec![0, 1], vec![Z, Z]);

assert!(op1.commutes_with(&op2));
assert!(!op1.commutes_with(&op3));

Checks if two operators anticommute.

If an operator is smaller than the other, it is padded with identities.

Example
let op1 = PauliOperator::new(5, vec![1, 2, 3], vec![X, Y, Z]);
let op2 = PauliOperator::new(5, vec![2, 3, 4], vec![X, X, X]);
let op3 = PauliOperator::new(5, vec![0, 1], vec![Z, Z]);

assert!(!op1.anticommutes_with(&op2));
assert!(op1.anticommutes_with(&op3));

Returns an iterator over pairs of positions and Paulis.

Example
let operator = PauliOperator::new(5, vec![0, 2, 4], vec![X, Y, Z]);
let mut iter = operator.iter();

assert_eq!(iter.next(), Some((0, &X)));
assert_eq!(iter.next(), Some((2, &Y)));
assert_eq!(iter.next(), Some((4, &Z)));
assert_eq!(iter.next(), None);

Returns the Pauli at the given position or None if the position is out of bound.

Example
let operator = PauliOperator::new(5, vec![0, 2, 4], vec![X, Y, Z]);

assert_eq!(operator.get(0), Some(X));
assert_eq!(operator.get(1), Some(I));
assert_eq!(operator.get(2), Some(Y));
assert_eq!(operator.get(10), None);

Returns the length of the operator.

Returns the number of non identity elements.

Returns a slice of the positions where the element is not identity.

Example
let operator = PauliOperator::new(5, vec![0, 2, 4], vec![X, Y, Z]);

assert_eq!(operator.non_trivial_positions(), &[0, 2, 4]);

Returns two operators such that there product is the original operator and the first contains only Xs and the second only Zs.

Example
let operator = PauliOperator::new(5, vec![0, 2, 4], vec![X, Y, Z]);
let (x_operator, z_operator) = operator.partition_x_and_z();

assert_eq!(x_operator, PauliOperator::new(5, vec![0, 2], vec![X, X]));
assert_eq!(z_operator, PauliOperator::new(5, vec![2, 4], vec![Z, Z]));

Returns the X part of the operator.

Example
let operator = PauliOperator::new(5, vec![0, 2, 4], vec![X, Y, Z]);
let x_operator = operator.x_part();

assert_eq!(x_operator, PauliOperator::new(5, vec![0, 2], vec![X, X]));

Returns the Z part of the operator.

Example
let operator = PauliOperator::new(5, vec![0, 2, 4], vec![X, Y, Z]);
let z_operator = operator.z_part();

assert_eq!(z_operator, PauliOperator::new(5, vec![2, 4], vec![Z, Z]));

Returns the element-wise product of two operators or an Error if they have different lengths.

For a panicking version, use the * operator.

Example
let op1 = PauliOperator::new(5, vec![1, 2, 3], vec![X, Y, Z]);
let op2 = PauliOperator::new(5, vec![2, 3, 4], vec![Y, X, Z]);

let product = PauliOperator::new(5, vec![1, 3, 4], vec![X, Y, Z]);

assert_eq!(op1.multiply_with(&op2), Ok(product))

Converts a PauliOperator to a Vec of its non trivial positions consumming the operator.

Example
let operator = PauliOperator::new(5, vec![1, 2, 3], vec![X, Y, Z]);
let positions = operator.into_raw_positions();
assert_eq!(positions, vec![1, 2, 3]);

Converts a PauliOperator to a Vec of the Paulis consumming the operator.

Example
let operator = PauliOperator::new(5, vec![1, 2, 3], vec![X, Y, Z]);
let paulis = operator.into_raw_paulis();
assert_eq!(paulis, vec![X, Y, Z]);

Converts a PauliOperator to a Vec of the positions and a Vec of Paulis consumming the operator.

Example
let operator = PauliOperator::new(5, vec![1, 2, 3], vec![X, Y, Z]);
let (positions, paulis) = operator.into_raw();
assert_eq!(positions, vec![1, 2, 3]);
assert_eq!(paulis, vec![X, Y, Z]);

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.