NumPyMinimumEigensolver¶
-
class
NumPyMinimumEigensolver
(filter_criterion=None)[source]¶ Bases:
qiskit.algorithms.minimum_eigen_solvers.minimum_eigen_solver.MinimumEigensolver
The Numpy Minimum Eigensolver algorithm.
- Parameters
filter_criterion (
Optional
[Callable
[[Union
[List
,ndarray
],float
,Optional
[List
[float
]]],bool
]]) – callable that allows to filter eigenvalues/eigenstates. The minimum eigensolver is only searching over feasible states and returns an eigenstate that has the smallest eigenvalue among feasible states. The callable has the signature filter(eigenstate, eigenvalue, aux_values) and must return a boolean to indicate whether to consider this value or not. If there is no feasible element, the result can even be empty.
Methods
Computes minimum eigenvalue.
Whether computing the expectation value of auxiliary operators is supported.
Attributes
-
filter_criterion
¶ returns the filter criterion if set
- Return type
Optional
[Callable
[[Union
[List
,ndarray
],float
,Optional
[List
[float
]]],bool
]]