qrisp.quantum_backtracking.QuantumBacktrackingTree.estimate_phase#

QuantumBacktrackingTree.estimate_phase(precision)[source]#

Performs quantum phase estimation on the quantum step operator.

If executed with sufficient precision, the phase estimation will yield a QuantumFloat, where the probability of the 0 component indicates the presence of a node where the accept function yielded True.

If the probability is higher than 3/8 A solution exists.

If the probability is less than 1/4 No solution exists.

Otherwise Increase precision.

In general, the required precision is proportional to

log2(Tn)2+β

Where T is the amount of nodes, that would be visited by a classical algorithm, n is the maximum depth and β is a universal constant.

Parameters:
precisionint

The precision to perform the quantum phase estimation with.

Returns:
qpe_resQuantumFloat

The QuantumFloat containing the result of the phase estimation.