qiskit.chemistry.algorithms.NumPyMinimumEigensolverFactory¶
-
class
NumPyMinimumEigensolverFactory
(filter_criterion=None, use_default_filter_criterion=False)[código fonte]¶ A factory to construct a NumPyMinimumEigensolver.
- Parâmetros
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.use_default_filter_criterion (
bool
) – whether to use the transformation’s default filter criterion iffilter_criterion
isNone
.
-
__init__
(filter_criterion=None, use_default_filter_criterion=False)[código fonte]¶ - Parâmetros
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.use_default_filter_criterion (
bool
) – whether to use the transformation’s default filter criterion iffilter_criterion
isNone
.
Methods
__init__
([filter_criterion, …])- type filter_criterion
Optional
[Callable
[[Union
[List
,ndarray
],float
,Optional
[List
[float
]]],bool
]]
get_solver
(transformation)Returns a NumPyMinimumEigensolver which possibly uses the default filter criterion provided by the
transformation
.Returns whether the eigensolver generated by this factory supports auxiliary operators.
Attributes
returns filter criterion
returns whether to use the default filter criterion
-
property
filter_criterion
¶ returns filter criterion
- Tipo de retorno
Callable
[[Union
[List
,ndarray
],float
,Optional
[List
[float
]]],bool
]
-
get_solver
(transformation)[código fonte]¶ Returns a NumPyMinimumEigensolver which possibly uses the default filter criterion provided by the
transformation
.- Parâmetros
transformation (
Transformation
) – a fermionic/bosonic qubit operator transformation.- Tipo de retorno
MinimumEigensolver
- Retorna
A NumPyMinimumEigensolver suitable to compute the ground state of the molecule transformed by
transformation
.
-
supports_aux_operators
()[código fonte]¶ Returns whether the eigensolver generated by this factory supports auxiliary operators.
-
property
use_default_filter_criterion
¶ returns whether to use the default filter criterion
- Tipo de retorno
bool