Eigensolver¶
-
class
Eigensolver
[source]¶ Bases:
abc.ABC
The Eigensolver Interface.
Algorithms that can compute eigenvalues for an operator may implement this interface to allow different algorithms to be used interchangeably.
Methods
Computes eigenvalues.
Whether computing the expectation value of auxiliary operators is supported.
Attributes
-
aux_operators
¶ Returns the auxiliary operators.
- Return type
Optional
[List
[Optional
[OperatorBase
]]]
-
operator
¶ Return the operator.
- Return type
Union
[OperatorBase
,LegacyBaseOperator
,None
]
-