Skip to main content
IBM Quantum Platform
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.

BOPESSamplerResult

class BOPESSamplerResult(points, energies, raw_results)

GitHub

Bases: object

The BOPES Sampler result

Creates an new instance of the result. :type points: List[float] :param points: List of points. :type energies: List[float] :param energies: List of energies. :type raw_results: Dict[float, EigenstateResult] :param raw_results: Raw results obtained from the solver.


Methods

point_results

BOPESSamplerResult.point_results(point)

returns all results for a specific point.

Return type

EigenstateResult


Attributes

energies

returns list of energies.

Return type

List[float]

points

returns list of points.

Return type

List[float]

raw_results

returns all results for all points.

Return type

Dict[float, EigenstateResult]

Was this page helpful?
Report a bug or request content on GitHub.