qiskit.algorithms.GroverResult¶
-
class
GroverResult
[Quellcode]¶ Grover Result.
-
__init__
()[Quellcode]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
combine
(result)Any property from the argument that exists in the receiver is updated.
Attributes
The post-processed value of the most likely bitstring.
Return the circuit results.
All the powers of the Grover operator that have been tried.
Return the maximum sampling probability.
Whether the classical oracle evaluation of the top measurement was True or False.
The most frequently measured output as bitstring.
-
property
assignment
¶ The post-processed value of the most likely bitstring.
- Rückgabetyp
Any
- Rückgabe
The output of the
post_processing
function of the respectiveAmplificationProblem
, where the input is thetop_measurement
. The type is the same as the return type of the post-processing function.
-
property
circuit_results
¶ Return the circuit results. Can be a statevector or counts dictionary.
- Rückgabetyp
Union
[List
[ndarray
],List
[Dict
[str
,int
]],None
]
-
combine
(result)¶ Any property from the argument that exists in the receiver is updated. :type result:
AlgorithmResult
:param result: Argument result with properties to be set.- Verursacht
TypeError – Argument is None
- Rückgabetyp
None
-
property
iterations
¶ All the powers of the Grover operator that have been tried.
- Rückgabetyp
List
[int
]- Rückgabe
The powers of the Grover operator tested.
-
property
max_probability
¶ Return the maximum sampling probability.
- Rückgabetyp
float
-
property
oracle_evaluation
¶ Whether the classical oracle evaluation of the top measurement was True or False.
- Rückgabetyp
bool
- Rückgabe
The classical oracle evaluation of the top measurement.
-
property
top_measurement
¶ The most frequently measured output as bitstring.
- Rückgabetyp
Optional
[str
]- Rückgabe
The most frequently measured output state.
-