Source code for qiskit.opflow.expectations.matrix_expectation
# This code is part of Qiskit.
#
# (C) Copyright IBM 2020, 2023.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
"""MatrixExpectation Class"""
from typing import Union
from qiskit.opflow.expectations.expectation_base import ExpectationBase
from qiskit.opflow.list_ops import ComposedOp, ListOp
from qiskit.opflow.operator_base import OperatorBase
from qiskit.opflow.state_fns.operator_state_fn import OperatorStateFn
from qiskit.utils.deprecation import deprecate_func
[docs]class MatrixExpectation(ExpectationBase):
"""An Expectation converter which converts Operator measurements to
be matrix-based so they can be evaluated by matrix multiplication."""
@deprecate_func(
since="0.24.0",
package_name="qiskit-terra",
additional_msg="For code migration guidelines, visit https://qisk.it/opflow_migration.",
)
def __init__(self) -> None:
super().__init__()
[docs] def convert(self, operator: OperatorBase) -> OperatorBase:
"""Accept an Operator and return a new Operator with the Pauli measurements replaced by
Matrix based measurements.
Args:
operator: The operator to convert.
Returns:
The converted operator.
"""
if isinstance(operator, OperatorStateFn) and operator.is_measurement:
return operator.to_matrix_op()
elif isinstance(operator, ListOp):
return operator.traverse(self.convert)
else:
return operator
[docs] def compute_variance(self, exp_op: OperatorBase) -> Union[list, float]:
r"""
Compute the variance of the expectation estimator. Because this expectation
works by matrix multiplication, the estimation is exact and the variance is
always 0, but we need to return those values in a way which matches the Operator's
structure.
Args:
exp_op: The full expectation value Operator.
Returns:
The variances or lists thereof (if exp_op contains ListOps) of the expectation value
estimation, equal to 0.
"""
# Need to do this to mimic Op structure
def sum_variance(operator):
if isinstance(operator, ComposedOp):
return 0.0
elif isinstance(operator, ListOp):
return operator.combo_fn([sum_variance(op) for op in operator.oplist])
else:
return 0.0
return sum_variance(exp_op)