qdk_chemistry.algorithms.phase_estimation.base module
QDK/Chemistry phase estimation abstractions and utilities.
- class qdk_chemistry.algorithms.phase_estimation.base.PhaseEstimation[source]
Bases:
AlgorithmAbstract base class for phase estimation algorithms.
- run(*args, **kwargs)
Run the algorithm with the provided arguments.
This method wraps the internal _run_impl method to provide a consistent interface for executing the algorithm.
- Parameters:
args – The arguments required to run the algorithm.
kwargs – The keyword arguments required to run the algorithm.
- Returns:
The results of the algorithm
- Return type:
Any
- class qdk_chemistry.algorithms.phase_estimation.base.PhaseEstimationFactory[source]
Bases:
AlgorithmFactoryFactory class for creating PhaseEstimation instances.