85 lines
2.3 KiB
Plaintext
85 lines
2.3 KiB
Plaintext
---
|
||
title: GroverResult
|
||
description: API reference for qiskit.algorithms.GroverResult
|
||
in_page_toc_min_heading_level: 1
|
||
python_api_type: class
|
||
python_api_name: qiskit.algorithms.GroverResult
|
||
---
|
||
|
||
# GroverResult
|
||
|
||
<Class id="qiskit.algorithms.GroverResult" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.24/qiskit/algorithms/amplitude_amplifiers/grover.py" signature="GroverResult" modifiers="class">
|
||
Bases: `AmplitudeAmplifierResult`
|
||
|
||
Grover Result.
|
||
|
||
## Methods
|
||
|
||
<span id="qiskit-algorithms-groverresult-combine" />
|
||
|
||
### combine
|
||
|
||
<Function id="qiskit.algorithms.GroverResult.combine" signature="GroverResult.combine(result)">
|
||
Any property from the argument that exists in the receiver is updated. :param result: Argument result with properties to be set.
|
||
|
||
**Raises**
|
||
|
||
**TypeError** – Argument is None
|
||
</Function>
|
||
|
||
## Attributes
|
||
|
||
### assignment
|
||
|
||
<Attribute id="qiskit.algorithms.GroverResult.assignment">
|
||
The post-processed value of the most likely bitstring.
|
||
|
||
**Returns**
|
||
|
||
The output of the `post_processing` function of the respective `AmplificationProblem`, where the input is the `top_measurement`. The type is the same as the return type of the post-processing function.
|
||
</Attribute>
|
||
|
||
### circuit\_results
|
||
|
||
<Attribute id="qiskit.algorithms.GroverResult.circuit_results">
|
||
Return the circuit results. Can be a statevector or counts dictionary.
|
||
</Attribute>
|
||
|
||
### iterations
|
||
|
||
<Attribute id="qiskit.algorithms.GroverResult.iterations">
|
||
All the powers of the Grover operator that have been tried.
|
||
|
||
**Returns**
|
||
|
||
The powers of the Grover operator tested.
|
||
</Attribute>
|
||
|
||
### max\_probability
|
||
|
||
<Attribute id="qiskit.algorithms.GroverResult.max_probability">
|
||
Return the maximum sampling probability.
|
||
</Attribute>
|
||
|
||
### oracle\_evaluation
|
||
|
||
<Attribute id="qiskit.algorithms.GroverResult.oracle_evaluation">
|
||
Whether the classical oracle evaluation of the top measurement was True or False.
|
||
|
||
**Returns**
|
||
|
||
The classical oracle evaluation of the top measurement.
|
||
</Attribute>
|
||
|
||
### top\_measurement
|
||
|
||
<Attribute id="qiskit.algorithms.GroverResult.top_measurement">
|
||
The most frequently measured output as bitstring.
|
||
|
||
**Returns**
|
||
|
||
The most frequently measured output state.
|
||
</Attribute>
|
||
</Class>
|
||
|