forked from microsoft/QuantumKatas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OracleCounterSimulator.cs
94 lines (79 loc) · 3.18 KB
/
OracleCounterSimulator.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
//////////////////////////////////////////////////////////////////////
// This file contains parts of the testing harness.
// You should not modify anything in this file.
// The tasks themselves can be found in Tasks.qs file.
//////////////////////////////////////////////////////////////////////
using System;
using System.Collections.Generic;
using Microsoft.Quantum.Simulation.Core;
using Microsoft.Quantum.Simulation.Simulators;
using Xunit;
namespace Quantum.Kata.DeutschJozsaAlgorithm
{
/// <summary>
/// This custom quantum simulator keeps track of the number of times
/// each operation is executed, by providing a custom native operation:
/// `AssertOracleCallsCount` which asserts the number of times
/// the given oracle (operation) has been called.
/// </summary>
public class OracleCounterSimulator : QuantumSimulator
{
private Dictionary<ICallable, int> _operationsCount = new Dictionary<ICallable, int>();
public OracleCounterSimulator(
bool throwOnReleasingQubitsNotInZeroState = true,
uint? randomNumberGeneratorSeed = null,
bool disableBorrowing = false) :
base(throwOnReleasingQubitsNotInZeroState, randomNumberGeneratorSeed, disableBorrowing)
{
this.OnOperationStart += CountOperationCalls;
}
/// <summary>
/// Callback method for the OnOperationStart event.
/// </summary>
public void CountOperationCalls(ICallable op, IApplyData data)
{
if (_operationsCount.ContainsKey(op))
{
_operationsCount[op]++;
}
else
{
_operationsCount[op] = 1;
}
}
// Custom Native operation to reset the oracle counts back to 0.
public class ResetOracleCallsImpl : ResetOracleCallsCount
{
OracleCounterSimulator _sim;
public ResetOracleCallsImpl(OracleCounterSimulator m) : base(m)
{
_sim = m;
}
public override Func<QVoid, QVoid> Body => (__in) =>
{
_sim._operationsCount.Clear();
return QVoid.Instance;
};
}
// Custom Native operation to Assert the number of calls for an Operation.
public class AssertOracleCallsImpl<T> : AssertOracleCallsCount<T>
{
OracleCounterSimulator _sim;
public AssertOracleCallsImpl(OracleCounterSimulator m) : base(m)
{
_sim = m;
}
public override Func<(Int64, T), QVoid> Body => (__in) =>
{
var (expected, oracle) = __in;
var op = oracle as ICallable;
Assert.NotNull(op);
var actual = _sim._operationsCount.ContainsKey(op) ? _sim._operationsCount[op] : 0;
Assert.True(expected >= actual, $"Oracle should be called at most {expected} time(s), your solution called it {actual} time(s).");
return QVoid.Instance;
};
}
}
}