qiskit-documentation/docs/api/qiskit/0.37/qiskit.algorithms.RealEvolv...

39 lines
1.3 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: RealEvolver
description: API reference for qiskit.algorithms.RealEvolver
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.algorithms.RealEvolver
---
# RealEvolver
<Class id="qiskit.algorithms.RealEvolver" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.21/qiskit/algorithms/evolvers/real_evolver.py" signature="RealEvolver" modifiers="class">
Bases: `abc.ABC`
Interface for Quantum Real Time Evolution.
## Methods
### evolve
<Function id="qiskit.algorithms.RealEvolver.evolve" signature="RealEvolver.evolve(evolution_problem)" modifiers="abstract">
Perform real time evolution $\exp(-i t H)|\Psi\rangle$.
Evolves an initial state $|\Psi\rangle$ for a time $t$ under a Hamiltonian $H$, as provided in the `evolution_problem`.
**Parameters**
**evolution\_problem** ([`EvolutionProblem`](qiskit.algorithms.EvolutionProblem "qiskit.algorithms.evolvers.evolution_problem.EvolutionProblem")) The definition of the evolution problem.
**Return type**
[`EvolutionResult`](qiskit.algorithms.EvolutionResult "qiskit.algorithms.evolvers.evolution_result.EvolutionResult")
**Returns**
Evolution result which includes an evolved quantum state.
</Function>
</Class>