forked from microsoft/QuantumKatas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOracleCounterSimulator.cs
56 lines (49 loc) · 1.96 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
// 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.
//////////////////////////////////////////////////////////////////////
namespace Quantum.Kata.SimonsAlgorithm
{
using System.Collections.Generic;
using Microsoft.Quantum.Simulation.Core;
using Microsoft.Quantum.Simulation.Simulators;
/// <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)
{
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;
}
}
public int GetOperationCount(ICallable op)
{
return _operationsCount.TryGetValue(op, out var value) ? value : 0;
}
}
}