MinimumEigensolver#
- class qiskit.algorithms.minimum_eigensolvers.MinimumEigensolver[ソース]#
ベースクラス:
ABC
The minimum eigensolver interface.
Algorithms that can compute a minimum eigenvalue for an operator may implement this interface to allow different algorithms to be used interchangeably.
Methods
- abstract compute_minimum_eigenvalue(operator, aux_operators=None)[ソース]#
Computes the minimum eigenvalue. The
operator
andaux_operators
are supplied here. While anoperator
is required by algorithms,aux_operators
are optional.- パラメータ:
operator (BaseOperator | PauliSumOp) – Qubit operator of the observable.
aux_operators (ListOrDict[BaseOperator | PauliSumOp] | None) – Optional list of auxiliary operators to be evaluated with the parameters of the minimum eigenvalue main result and their expectation values returned. For instance in chemistry these can be dipole operators and total particle count operators, so we can get values for these at the ground state.
- 戻り値:
A minimum eigensolver result.
- 戻り値の型:
- classmethod supports_aux_operators()[ソース]#
Whether computing the expectation value of auxiliary operators is supported.
If the minimum eigensolver computes an eigenvalue of the main
operator
then it can compute the expectation value of theaux_operators
for that state. Otherwise they will be ignored.- 戻り値:
True if aux_operator expectations can be evaluated, False otherwise
- 戻り値の型: