EOH¶
- class EOH(operator, initial_state, evo_operator, evo_time=1, num_time_slices=1, expansion_mode='trotter', expansion_order=1, quantum_instance=None)[source]¶
The Quantum EOH (Evolution of Hamiltonian) algorithm.
EOH provides the lower-level building blocks for simulating universal quantum systems. For any given quantum system that can be decomposed into local interactions (for example, a global hamiltonian as the weighted sum of several Pauli spin operators), the local interactions can then be used to approximate the global quantum system via, for example, Lloyd’s method or Trotter-Suzuki decomposition.
- Parameters
operator (
LegacyBaseOperator
) – Operator to evaluateinitial_state (
InitialState
) – Initial state for evolutionevo_operator (
LegacyBaseOperator
) – Operator to evolveevo_time (
float
) – Evolution time, has min value of 0num_time_slices (
int
) – Number of time slices, has minimum value of 1expansion_mode (
str
) – Either"trotter"
(Lloyd’s method) or"suzuki"
(for Trotter-Suzuki expansion)expansion_order (
int
) – The Trotter-Suzuki expansion order.quantum_instance (
Union
[QuantumInstance
,BaseBackend
,None
]) – Quantum Instance or Backend
Attributes
Returns backend.
Returns quantum instance.
Return a numpy random.
Methods
Construct the circuit.
EOH.run
([quantum_instance])Execute the algorithm with selected backend.
EOH.set_backend
(backend, **kwargs)Sets backend with configuration.