Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.chemistry.algorithms.GroundStateSolver

class GroundStateSolver(transformation)[ソース]

The ground state calculation interface

パラメータ

transformation (Transformation) – transformation from driver to qubit operator (and aux. operators)

__init__(transformation)[ソース]
パラメータ

transformation (Transformation) – transformation from driver to qubit operator (and aux. operators)

Methods

__init__(transformation)

type transformation

Transformation

evaluate_operators(state, operators)

Evaluates additional operators at the given state.

returns_groundstate()

Whether this class returns only the ground state energy or also the ground state itself.

solve(driver[, aux_operators])

Compute the ground state energy of the molecule that was supplied via the driver.

Attributes

transformation

Returns the transformation used to obtain a qubit operator from the molecule.

abstract evaluate_operators(state, operators)[ソース]

Evaluates additional operators at the given state.

パラメータ
  • state (Union[str, dict, Result, list, ndarray, Statevector, QuantumCircuit, Instruction, OperatorBase]) – any kind of input that can be used to specify a state. See also StateFn for more details.

  • operators (Union[WeightedPauliOperator, OperatorBase, list, dict]) – either a single, list or dictionary of WeightedPauliOperator``s or any kind of operator implementing the ``OperatorBase.

戻り値の型

Union[float, List[float], Dict[str, List[float]]]

戻り値

The expectation value of the given operator(s). The return type will be identical to the format of the provided operators.

abstract returns_groundstate()[ソース]

Whether this class returns only the ground state energy or also the ground state itself.

戻り値の型

bool

戻り値

True, if this class also returns the ground state in the results object. False otherwise.

abstract solve(driver, aux_operators=None)[ソース]

Compute the ground state energy of the molecule that was supplied via the driver.

パラメータ
  • driver (BaseDriver) – a chemistry driver object which defines the chemical problem that is to be solved by this calculation.

  • 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.

戻り値の型

Union[ElectronicStructureResult, VibronicStructureResult]

戻り値

An eigenstate result.

property transformation

Returns the transformation used to obtain a qubit operator from the molecule.

戻り値の型

Transformation