ListOp¶
- class ListOp(oplist, combo_fn=<function ListOp.<lambda>>, coeff=1.0, abelian=False)[source]¶
A Class for manipulating List Operators, and parent class to
SummedOp
,ComposedOp
, andTensoredOp
.List Operators are classes for storing and manipulating lists of Operators, State functions, or Measurements, and include some rule or
combo_fn
defining how the Operator functions of the list constituents should be combined to form to cumulative Operator function of theListOp
. For example, aSummedOp
has an addition-basedcombo_fn
, so once the Operators in its list are evaluated against some bitstring to produce a list of results, we know to add up those results to produce the final result of theSummedOp
’s evaluation. In theory, thiscombo_fn
can be any function over classical complex values, but for convenience we’ve chosen for them to be defined over NumPy arrays and values. This way, large numbers of evaluations, such as after callingto_matrix
on the list constituents, can be efficiently combined. While the combination function is defined over classical values, it should be understood as the operation by which each Operators’ underlying function is combined to form the underlying Operator function of theListOp
. In this way, theListOps
are the basis for constructing large and sophisticated Operators, State Functions, and Measurements in Aqua.The base
ListOp
class is particularly interesting, as itscombo_fn
is “the identity list Operation”. Meaning, if we understand thecombo_fn
as a function from a list of complex values to some output, one such function is returning the list as-is. This is powerful for constructing compact hierarchical Operators which return many measurements in multiple dimensional lists.- Parameters
oplist (
List
[OperatorBase
]) – The list ofOperatorBases
defining this Operator’s underlying function.combo_fn (callable) – The recombination function to combine classical results of the
oplist
Operators’ eval functions (e.g. sum).coeff (
Union
[int
,float
,complex
,ParameterExpression
]) – A coefficient multiplying the operatorabelian (
bool
) – Indicates whether the Operators inoplist
are known to mutually commute.the (Note that the default "recombination function" lambda above is essentially) –
values (identity - it accepts the list of) –
list. (and returns them in a) –
Attributes
Whether the Operators in
oplist
are known to commute with one another.The scalar coefficient multiplying the Operator.
The function defining how to combine
oplist
(or Numbers, or NumPy arrays) to produce the Operator’s underlying function.Indicates whether the ListOp or subclass is distributive under composition.
The number of qubits over which the Operator is defined.
The list of
OperatorBases
defining the underlying function of this Operator.Methods
ListOp.__getitem__
(offset)Allows array-indexing style access to the Operators in
oplist
.Length of
oplist
.ListOp.__mul__
(other)Overload
*
for Operator scalar multiplication.ListOp.add
(other)Return Operator addition of self and other, overloaded by
+
.Return a new Operator equal to the Operator’s adjoint (conjugate transpose), overloaded by
~
.ListOp.assign_parameters
(param_dict)Binds scalar values to any Terra
Parameters
in the coefficients or primitives of the Operator, or substitutes oneParameter
for another.ListOp.bind_parameters
(param_dict)Same as assign_parameters, but maintained for consistency with QuantumCircuit in Terra (which has both assign_parameters and bind_parameters).
ListOp.compose
(other)Return Operator Composition between self and other (linear algebra-style: A@B(x) = A(B(x))), overloaded by
@
.ListOp.equals
(other)Evaluate Equality between Operators, overloaded by
==
.ListOp.eval
([front])Evaluate the Operator’s underlying function, either on a binary string or another Operator.
Return an
OperatorBase
equivalent to an exponentiation of self * -i, e^(-i*op).ListOp.log_i
([massive])Return a
MatrixOp
equivalent to log(H)/-i for this operator H.ListOp.mul
(scalar)Returns the scalar multiplication of the Operator, overloaded by
*
, including support for Terra’sParameters
, which can be bound to values later (viabind_parameters
).Return the Operator’s negation, effectively just multiplying by -1.0, overloaded by
-
.ListOp.power
(exponent)Return Operator composed with self multiple times, overloaded by
**
.Return a set of strings describing the primitives contained in the Operator.
Try collapsing the Operator structure, usually after some type of conversion, e.g.
ListOp.tensor
(other)Return tensor product between self and other, overloaded by
^
.ListOp.tensorpower
(other)Return tensor product with self multiple times, overloaded by
^
.Returns an equivalent Operator composed of only QuantumCircuit-based primitives, such as
CircuitOp
andCircuitStateFn
.ListOp.to_legacy_op
([massive])Attempt to return the Legacy Operator representation of the Operator.
ListOp.to_matrix
([massive])Return NumPy representation of the Operator.
ListOp.to_matrix_op
([massive])Returns an equivalent Operator composed of only NumPy-based primitives, such as
MatrixOp
andVectorStateFn
.ListOp.to_pauli_op
([massive])Returns an equivalent Operator composed of only Pauli-based primitives, such as
PauliOp
.Returns SciPy sparse matrix representation of the Operator.
ListOp.traverse
(convert_fn[, coeff])Apply the convert_fn to each node in the oplist.
ListOp.__mul__
(other)Overload
*
for Operator scalar multiplication.