SamplingMinimumEigensolver#

class SamplingMinimumEigensolver[source]#

Bases: ABC

The Sampling Minimum Eigensolver Interface.

Methods

abstract compute_minimum_eigenvalue(operator, aux_operators=None)[source]#

Compute the minimum eigenvalue of a diagonal operator.

Parameters:
  • operator (BaseOperator) – Diagonal qubit operator.

  • aux_operators (ListOrDict[BaseOperator] | None) – Optional list of auxiliary operators to be evaluated with the final state.

Returns:

A SamplingMinimumEigensolverResult containing the optimization result.

Return type:

SamplingMinimumEigensolverResult

classmethod supports_aux_operators()[source]#

Whether computing the expectation value of auxiliary operators is supported.

If the minimum eigensolver computes an eigenstate of the main operator then it can compute the expectation value of the aux_operators for that state. Otherwise they will be ignored.

Returns:

True if aux_operator expectations can be evaluated, False otherwise

Return type:

bool