Skip to main content
IBM Quantum Platform
이 페이지는 Qiskit SDK 의 이전 버전에서 가져온 것으로, 최신 버전에는 존재하지 않습니다. 최신 버전으로 업데이트하시기를 권장합니다. 자세한 정보는 릴리스 정보를 참조하십시오.

SamplingMinimumEigensolver

class qiskit.algorithms.minimum_eigensolvers.SamplingMinimumEigensolver

GitHub

Bases: ABC

The Sampling Minimum Eigensolver Interface.


Methods

compute_minimum_eigenvalue

abstract compute_minimum_eigenvalue(operator, aux_operators=None)

Compute the minimum eigenvalue of a diagonal operator.

Parameters

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

Returns

A SamplingMinimumEigensolverResult containing the optimization result.

Return type

SamplingMinimumEigensolverResult

supports_aux_operators

classmethod supports_aux_operators()

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

이 페이지가 도움이 되었습니까?
GitHub에서 버그, 오타를 보고하거나 컨텐츠를 요청하십시오.