Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.chemistry.transformations.Transformation

class Transformation[소스]

Base class for transformation to qubit operators for chemistry problems

__init__()

Initialize self. See help(type(self)) for accurate signature.

Methods

__init__()

Initialize self.

build_hopping_operators([excitations])

Builds the product of raising and lowering operators (basic excitation operators)

get_default_filter_criterion()

Returns a default filter criterion method to filter the eigenvalues computed by the eigen solver.

interpret(raw_result)

Interprets an EigenstateResult in the context of this transformation.

transform(driver[, aux_operators])

Transformation from the driver to a qubit operator.

Attributes

commutation_rule

Getter of the commutation rule

abstract build_hopping_operators(excitations='sd')[소스]

Builds the product of raising and lowering operators (basic excitation operators)

매개변수

excitations (Union[str, List[List[int]]]) – The excitations to be included in the eom pseudo-eigenvalue problem. If a string (‘s’, ‘d’ or ‘sd’) then all excitations of the given type will be used. Otherwise a list of custom excitations can directly be provided.

Returns:

반환 형식

Tuple[Dict[str, WeightedPauliOperator], Dict[str, List[bool]], Dict[str, List[Any]]]

abstract property commutation_rule

Getter of the commutation rule

반환 형식

bool

get_default_filter_criterion()[소스]

Returns a default filter criterion method to filter the eigenvalues computed by the eigen solver. For more information see also aqua.algorithms.eigen_solvers.NumPyEigensolver.filter_criterion.

반환 형식

Optional[Callable[[Union[List, ndarray], float, Optional[List[float]]], bool]]

abstract interpret(raw_result)[소스]

Interprets an EigenstateResult in the context of this transformation.

매개변수

raw_result (Union[EigenstateResult, EigensolverResult, MinimumEigensolverResult]) – an eigenstate result object.

반환 형식

EigenstateResult

반환값

An “interpreted” eigenstate result.

abstract transform(driver, aux_operators=None)[소스]

Transformation from the driver to a qubit operator.

매개변수
  • driver (BaseDriver) – A driver encoding the molecule information.

  • aux_operators (Union[List[FermionicOperator], List[BosonicOperator], None]) – Additional auxiliary operators to evaluate. Must be of type FermionicOperator if the qubit transformation is fermionic and of type BosonicOperator it is bosonic.

반환 형식

Tuple[OperatorBase, List[OperatorBase]]

반환값

A qubit operator and a dictionary of auxiliary operators.