qiskit.chemistry.algorithms.QEomEE¶
-
class
QEomEE
(operator, num_orbitals, num_particles, qubit_mapping='parity', two_qubit_reduction=True, active_occupied=None, active_unoccupied=None, is_eom_matrix_symmetric=True, se_list=None, de_list=None, z2_symmetries=None, untapered_op=None, aux_operators=None)[ソース]¶ QEomEE algorithm (classical)
- パラメータ
operator (
LegacyBaseOperator
) – qubit operatornum_orbitals (
int
) – total number of spin orbitals, has a min. value of 1.num_particles (
Union
[List
[int
],int
]) – number of particles, if it is a list, the first number is alpha and the second number if beta.qubit_mapping (
str
) – qubit mapping typetwo_qubit_reduction (
bool
) – two qubit reduction is applied or notactive_occupied (
Optional
[List
[int
]]) – list of occupied orbitals to include, indices are 0 to n where n is num particles // 2active_unoccupied (
Optional
[List
[int
]]) – list of unoccupied orbitals to include, indices are 0 to m where m is (num_orbitals - num particles) // 2is_eom_matrix_symmetric (
bool
) – is EoM matrix symmetricse_list (
Optional
[List
[List
[int
]]]) – single excitation list, overwrite the setting in active spacede_list (
Optional
[List
[List
[int
]]]) – double excitation list, overwrite the setting in active spacez2_symmetries (
Optional
[Z2Symmetries
]) – represent the Z2 symmetriesuntapered_op (
Optional
[LegacyBaseOperator
]) – if the operator is tapered, we need untapered operator to build element of EoM matrixaux_operators (
Optional
[List
[LegacyBaseOperator
]]) – Auxiliary operators to be evaluated at each eigenvalue
- 例外
ValueError – invalid parameter
-
__init__
(operator, num_orbitals, num_particles, qubit_mapping='parity', two_qubit_reduction=True, active_occupied=None, active_unoccupied=None, is_eom_matrix_symmetric=True, se_list=None, de_list=None, z2_symmetries=None, untapered_op=None, aux_operators=None)[ソース]¶ - パラメータ
operator (
LegacyBaseOperator
) – qubit operatornum_orbitals (
int
) – total number of spin orbitals, has a min. value of 1.num_particles (
Union
[List
[int
],int
]) – number of particles, if it is a list, the first number is alpha and the second number if beta.qubit_mapping (
str
) – qubit mapping typetwo_qubit_reduction (
bool
) – two qubit reduction is applied or notactive_occupied (
Optional
[List
[int
]]) – list of occupied orbitals to include, indices are 0 to n where n is num particles // 2active_unoccupied (
Optional
[List
[int
]]) – list of unoccupied orbitals to include, indices are 0 to m where m is (num_orbitals - num particles) // 2is_eom_matrix_symmetric (
bool
) – is EoM matrix symmetricse_list (
Optional
[List
[List
[int
]]]) – single excitation list, overwrite the setting in active spacede_list (
Optional
[List
[List
[int
]]]) – double excitation list, overwrite the setting in active spacez2_symmetries (
Optional
[Z2Symmetries
]) – represent the Z2 symmetriesuntapered_op (
Optional
[LegacyBaseOperator
]) – if the operator is tapered, we need untapered operator to build element of EoM matrixaux_operators (
Optional
[List
[LegacyBaseOperator
]]) – Auxiliary operators to be evaluated at each eigenvalue
- 例外
ValueError – invalid parameter
Methods
__init__
(operator, num_orbitals, num_particles)- type operator
LegacyBaseOperator
compute_minimum_eigenvalue
([operator, …])Computes minimum eigenvalue.
run
()Execute the classical algorithm.
Whether computing the expectation value of auxiliary operators is supported.
Attributes
Returns the auxiliary operators.
returns the filter criterion if set
Return the operator.
Return a numpy random.
-
property
aux_operators
¶ Returns the auxiliary operators.
- 戻り値の型
Optional
[List
[Optional
[OperatorBase
]]]
-
compute_minimum_eigenvalue
(operator=None, aux_operators=None)¶ Computes minimum eigenvalue. Operator and aux_operators can be supplied here and if not None will override any already set into algorithm so it can be reused with different operators. While an operator is required by algorithms, aux_operators are optional. To 『remove』 a previous aux_operators array use an empty list here.
- パラメータ
operator (
Union
[OperatorBase
,LegacyBaseOperator
,None
]) – If not None replaces operator in algorithmaux_operators (
Optional
[List
[Union
[OperatorBase
,LegacyBaseOperator
,None
]]]) – If not None replaces aux_operators in algorithm
- 戻り値の型
MinimumEigensolverResult
- 戻り値
MinimumEigensolverResult
-
property
filter_criterion
¶ returns the filter criterion if set
- 戻り値の型
Optional
[Callable
[[Union
[List
,ndarray
],float
,Optional
[List
[float
]]],bool
]]
-
property
operator
¶ Return the operator.
- 戻り値の型
Optional
[OperatorBase
]
-
property
random
¶ Return a numpy random.
-
run
()¶ Execute the classical algorithm.
- 戻り値
results of an algorithm.
- 戻り値の型
dict
-
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.
- 戻り値の型
bool
- 戻り値
True if aux_operator expectations can be evaluated, False otherwise