forked from microsoft/Quantum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDriver.cs
68 lines (53 loc) · 2.32 KB
/
Driver.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using Microsoft.Quantum.Simulation.Simulators;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.Quantum.Samples.PhaseEstimation
{
class Program
{
public static void Pause()
{
System.Console.WriteLine("\n\nPress any key to continue...\n\n");
System.Console.ReadKey();
}
static void Main(string[] args)
{
#region Setup
// We begin by defining a quantum simulator to be our target
// machine.
var sim = new QuantumSimulator(throwOnReleasingQubitsNotInZeroState: true);
// Next, we pick an arbitrary value for the eigenphase to be
// estimated. Note that we have assumed in the Q# operations that
// the prior for the phase φ is supported only on the interval
// [0, 1], so you might get inconsistent answers if you violate
// that constraint. Try it out!
const Double eigenphase = 0.344;
#endregion
#region Phase Estimation as a Likelihood Function
// In this region, we run the PhaseEstimationIteration()
// operation defined in the associated Q# file. That operation
// checks that the iterative phase estimation step has the right
// likelihood function.
System.Console.WriteLine("Phase Estimation Likelihood Check:");
PhaseEstimationIterationCheck.Run(sim).Wait();
Pause();
#endregion
#region
// Next, we run the BayesianPhaseEstiamtionSample operation
// defined in Q#. This operation estimates the phase φ using an
// explicit grid approximation to the Bayesian posterior.
System.Console.WriteLine("Bayesian Phase Estimation w/ Explicit Grid:");
var est = BayesianPhaseEstimationSample.Run(sim, eigenphase).Result;
System.Console.WriteLine($"Expected {eigenphase}, estimated {est}.");
Pause();
#endregion
System.Console.WriteLine("\n\nPress Enter to continue...\n\n");
System.Console.ReadLine();
}
}
}