2018-10-30 18:48:56 +03:00
// Copyright (c) Microsoft Corporation. All rights reserved.
2018-07-12 02:35:59 +03:00
// Licensed under the MIT license.
//////////////////////////////////////////////////////////////////////
2018-10-30 18:48:56 +03:00
// This file contains testing harness for all tasks.
2018-07-12 02:35:59 +03:00
// You should not modify anything in this file.
// The tasks themselves can be found in Tasks.qs file.
//////////////////////////////////////////////////////////////////////
2018-10-30 18:48:56 +03:00
namespace Quantum.Kata.Measurements {
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
open Microsoft.Quantum.Intrinsic;
2018-07-12 02:35:59 +03:00
open Microsoft.Quantum.Canon;
2019-05-04 02:46:04 +03:00
open Microsoft.Quantum.Diagnostics;
open Microsoft.Quantum.Convert;
open Microsoft.Quantum.Math;
2019-08-23 09:43:03 +03:00
open Microsoft.Quantum.Arrays;
2020-08-29 23:07:59 +03:00
open Microsoft.Quantum.Random;
2019-08-23 09:43:03 +03:00
2019-04-26 01:57:30 +03:00
open Quantum.Kata.Utils;
2018-07-12 02:35:59 +03:00
//////////////////////////////////////////////////////////////////
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// "Framework" operation for testing single-qubit tasks for distinguishing states of one qubit
// with Bool return
2019-12-31 01:50:29 +03:00
operation DistinguishTwoStates_OneQubit (statePrep : ((Qubit, Int) => Unit), testImpl : (Qubit => Bool), stateName : String[]) : Unit {
2018-10-30 18:48:56 +03:00
let nTotal = 100;
2019-12-31 01:50:29 +03:00
let nStates = 2;
2021-12-15 00:55:41 +03:00
mutable misclassifications = [0, size = nStates];
2019-12-31 01:50:29 +03:00
2021-01-29 10:09:48 +03:00
use q = Qubit();
for i in 1 .. nTotal {
// get a random bit to define whether qubit will be in a state corresponding to true return (1) or to false one (0)
// state = 0 false return
// state = 1 true return
let state = DrawRandomInt(0, 1);
// do state prep: convert |0⟩ to outcome with false return or to outcome with true return depending on state
statePrep(q, state);
// get the solution's answer and verify if NOT a match, then differentiate what kind of mismatch
let ans = testImpl(q);
2022-11-23 10:51:15 +03:00
if ans != (state == 1) {
2021-01-29 10:09:48 +03:00
set misclassifications w/= state <- misclassifications[state] + 1;
2018-07-12 02:35:59 +03:00
}
2021-01-29 10:09:48 +03:00
// we're not checking the state of the qubit after the operation
Reset(q);
2018-07-12 02:35:59 +03:00
}
2019-12-31 01:50:29 +03:00
mutable totalMisclassifications = 0;
2021-01-29 10:09:48 +03:00
for i in 0 .. nStates - 1 {
2022-11-23 10:51:15 +03:00
if misclassifications[i] != 0 {
2019-12-31 01:50:29 +03:00
set totalMisclassifications += misclassifications[i];
Message($"Misclassified {stateName[i]} as {stateName[1 - i]} in {misclassifications[i]} test runs.");
}
}
// This check will tell the total number of failed classifications
Fact(totalMisclassifications == 0, $"{totalMisclassifications} test runs out of {nTotal} returned incorrect state (see output for details).");
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_IsQubitOne (q : Qubit, state : Int) : Unit {
2022-11-23 10:51:15 +03:00
if state != 0 {
2018-10-30 18:48:56 +03:00
// convert |0⟩ to |1⟩
X(q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-12-22 23:02:11 +03:00
@Test("QuantumSimulator")
2020-10-15 14:36:23 +03:00
operation T101_IsQubitOne () : Unit {
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitOne, IsQubitOne, ["|0⟩", "|1⟩"]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-10-17 02:41:22 +03:00
// ------------------------------------------------------
2020-12-22 23:02:11 +03:00
@Test("QuantumSimulator")
2020-10-15 14:36:23 +03:00
operation T102_InitializeQubit () : Unit {
2021-01-29 10:09:48 +03:00
use q = Qubit();
for i in 0 .. 36 {
let alpha = ((2.0 * PI()) * IntAsDouble(i)) / 36.0;
Ry(2.0 * alpha, q);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// Test Task 1
InitializeQubit(q);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// Confirm that the state is |0⟩.
AssertQubit(Zero, q);
2018-10-17 02:41:22 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_IsQubitPlus (q : Qubit, state : Int) : Unit {
2022-11-23 10:51:15 +03:00
if state == 0 {
2018-10-30 18:48:56 +03:00
// convert |0⟩ to |-⟩
X(q);
H(q);
} else {
// convert |0⟩ to |+⟩
H(q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-12-22 23:02:11 +03:00
@Test("QuantumSimulator")
2020-10-15 14:36:23 +03:00
operation T103_IsQubitPlus () : Unit {
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitPlus, IsQubitPlus, ["|-⟩", "|+⟩"]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
// |A⟩ = cos(alpha) * |0⟩ + sin(alpha) * |1⟩,
2018-08-06 20:56:25 +03:00
// |B⟩ = - sin(alpha) * |0⟩ + cos(alpha) * |1⟩.
2018-10-30 18:48:56 +03:00
operation StatePrep_IsQubitA (alpha : Double, q : Qubit, state : Int) : Unit {
2022-11-23 10:51:15 +03:00
if state == 0 {
2018-10-30 18:48:56 +03:00
// convert |0⟩ to |B⟩
X(q);
Ry(2.0 * alpha, q);
} else {
// convert |0⟩ to |A⟩
Ry(2.0 * alpha, q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-12-22 23:02:11 +03:00
@Test("QuantumSimulator")
2020-10-15 14:36:23 +03:00
operation T104_IsQubitA () : Unit {
2018-10-30 18:48:56 +03:00
// cross-test
// alpha = 0.0 or PI() => !isQubitOne
// alpha = PI() / 2.0 => isQubitOne
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitOne, IsQubitA(PI() / 2.0, _),
[$"|B⟩=(-sin(π/2)|0⟩ + cos(π/2)|1⟩)", $"|A⟩=(cos(π/2)|0⟩ + sin(π/2)|1⟩)"]);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// alpha = PI() / 4.0 => isQubitPlus
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitPlus, IsQubitA(PI() / 4.0, _),
[$"|B⟩=(-sin(π/4)|0⟩ + cos(π/4)|1⟩)", $"|A⟩=(cos(π/4)|0⟩ + sin(π/4)|1⟩)"]);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
for i in 0 .. 10 {
2019-05-04 02:46:04 +03:00
let alpha = (PI() * IntAsDouble(i)) / 10.0;
2019-12-31 01:50:29 +03:00
DistinguishTwoStates_OneQubit(StatePrep_IsQubitA(alpha, _, _), IsQubitA(alpha, _),
[$"|B⟩=(-sin({i}π/10)|0⟩ + cos({i}π/10)|1⟩)", $"|A⟩=(cos({i}π/10)|0⟩ + sin({i}π/10)|1⟩)"]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// "Framework" operation for testing multi-qubit tasks for distinguishing states of an array of qubits
// with Int return
2020-01-17 07:28:12 +03:00
operation DistinguishStates_MultiQubit (nQubits : Int,
nStates : Int,
2019-08-23 09:43:03 +03:00
statePrep : ((Qubit[], Int) => Unit),
testImpl : (Qubit[] => Int),
2020-01-17 07:28:12 +03:00
measurementsPerRun : Int,
stateNames : String[]) : Unit {
2018-10-30 18:48:56 +03:00
let nTotal = 100;
2020-01-17 07:28:12 +03:00
// misclassifications will store the number of times state i has been classified as state j (dimension nStates^2)
2021-12-15 00:55:41 +03:00
mutable misclassifications = [0, size = nStates * nStates];
2020-01-17 07:28:12 +03:00
// unknownClassifications will store the number of times state i has been classified as some invalid state (index < 0 or >= nStates)
2021-12-15 00:55:41 +03:00
mutable unknownClassifications = [0, size = nStates];
2020-01-17 07:28:12 +03:00
2021-01-29 10:09:48 +03:00
use qs = Qubit[nQubits];
for _ in 1 .. nTotal {
// get a random integer to define the state of the qubits
let state = DrawRandomInt(0, nStates - 1);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// do state prep: convert |0...0⟩ to outcome with return equal to state
statePrep(qs, state);
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if measurementsPerRun > 0 {
2021-01-29 10:09:48 +03:00
ResetOracleCallsCount();
}
// get the solution's answer and verify that it's a match, if not, increase the exact mismatch count
let ans = testImpl(qs);
if ((ans >= 0) and (ans < nStates)) {
// classification result is a valid state index - check if is it correct
2022-11-23 10:51:15 +03:00
if ans != state {
2021-01-29 10:09:48 +03:00
set misclassifications w/= ((state * nStates) + ans) <- (misclassifications[(state * nStates) + ans] + 1);
2019-04-26 01:57:30 +03:00
}
2018-07-12 02:35:59 +03:00
}
2021-01-29 10:09:48 +03:00
else {
// classification result is an invalid state index - file it separately
set unknownClassifications w/= state <- (unknownClassifications[state] + 1);
}
// if we have a max number of measurements per solution run specified, check that it is not exceeded
2022-11-23 10:51:15 +03:00
if measurementsPerRun > 0 {
2021-01-29 23:47:51 +03:00
let nm = GetOracleCallsCount(Measure);
2021-01-29 10:09:48 +03:00
EqualityFactB(nm <= 1, true, $"You are allowed to do at most one measurement, and you did {nm}");
}
// we're not checking the state of the qubit after the operation
ResetAll(qs);
2018-07-12 02:35:59 +03:00
}
2020-01-17 07:28:12 +03:00
mutable totalMisclassifications = 0;
2021-01-29 10:09:48 +03:00
for i in 0 .. nStates - 1 {
for j in 0 .. nStates - 1 {
2022-11-23 10:51:15 +03:00
if misclassifications[(i * nStates) + j] != 0 {
2020-01-17 07:28:12 +03:00
set totalMisclassifications += misclassifications[i * nStates + j];
Message($"Misclassified {stateNames[i]} as {stateNames[j]} in {misclassifications[(i * nStates) + j]} test runs.");
}
}
2022-11-23 10:51:15 +03:00
if unknownClassifications[i] != 0 {
2020-01-17 07:28:12 +03:00
set totalMisclassifications += unknownClassifications[i];
Message($"Misclassified {stateNames[i]} as Unknown State in {unknownClassifications[i]} test runs.");
}
}
// This check will tell the total number of failed classifications
Fact(totalMisclassifications == 0, $"{totalMisclassifications} test runs out of {nTotal} returned incorrect state (see output for details).");
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_ZeroZeroOrOneOne (qs : Qubit[], state : Int) : Unit {
2022-11-23 10:51:15 +03:00
if state == 1 {
2018-10-30 18:48:56 +03:00
// |11⟩
X(qs[0]);
X(qs[1]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T105_ZeroZeroOrOneOne () : Unit {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(2, 2, StatePrep_ZeroZeroOrOneOne, ZeroZeroOrOneOne, 0, ["|00⟩", "|11⟩"]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_BasisStateMeasurement (qs : Qubit[], state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if state / 2 == 1 {
2018-10-30 18:48:56 +03:00
// |10⟩ or |11⟩
X(qs[0]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if state % 2 == 1 {
2018-10-30 18:48:56 +03:00
// |01⟩ or |11⟩
X(qs[1]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T106_BasisStateMeasurement () : Unit {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(2, 4, StatePrep_BasisStateMeasurement, BasisStateMeasurement, 0, ["|00⟩", "|01⟩", "|10⟩", "|11⟩"]);
2018-10-30 18:48:56 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-10-30 18:48:56 +03:00
operation StatePrep_Bitstring (qs : Qubit[], bits : Bool[]) : Unit {
2021-01-29 10:09:48 +03:00
for i in 0 .. Length(qs) - 1 {
2022-11-23 10:51:15 +03:00
if bits[i] {
2018-10-30 18:48:56 +03:00
X(qs[i]);
2018-07-12 02:35:59 +03:00
}
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation StatePrep_TwoBitstringsMeasurement (qs : Qubit[], bits1 : Bool[], bits2 : Bool[], state : Int) : Unit {
2019-05-04 02:46:04 +03:00
let bits = state == 0 ? bits1 | bits2;
StatePrep_Bitstring(qs, bits);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2020-01-17 07:28:12 +03:00
// Helper function to convert a boolean array to its ket state representation
function BoolArrayAsKetState (bits : Bool[]) : String {
mutable stateName = "|";
2021-01-29 10:09:48 +03:00
for i in 0 .. Length(bits) - 1 {
2020-01-17 07:28:12 +03:00
set stateName += (bits[i] ? "1" | "0");
}
return stateName + "⟩";
}
2019-04-26 01:57:30 +03:00
operation CheckTwoBitstringsMeasurement (b1 : Bool[], b2 : Bool[]) : Unit {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(Length(b1), 2, StatePrep_TwoBitstringsMeasurement(_, b1, b2, _),
TwoBitstringsMeasurement(_, b1, b2), 1,
[BoolArrayAsKetState(b1), BoolArrayAsKetState(b2)]);
2019-04-26 01:57:30 +03:00
}
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T107_TwoBitstringsMeasurement () : Unit {
2020-01-17 07:28:12 +03:00
mutable b1 = [false, true];
mutable b2 = [true, false];
CheckTwoBitstringsMeasurement(b1, b2);
set b1 = [true, true, false];
set b2 = [false, true, true];
CheckTwoBitstringsMeasurement(b1, b2);
set b1 = [false, true, true, false];
set b2 = [false, true, true, true];
CheckTwoBitstringsMeasurement(b1, b2);
set b1 = [true, false, false, false];
set b2 = [true, false, true, true];
CheckTwoBitstringsMeasurement(b1, b2);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
// ------------------------------------------------------
operation StatePrep_FindFirstDiff (bits1 : Bool[], bits2 : Bool[]) : Int {
2021-01-29 10:09:48 +03:00
for i in 0 .. Length(bits1) - 1 {
2022-11-23 10:51:15 +03:00
if bits1[i] != bits2[i] {
2020-04-09 02:55:59 +03:00
return i;
2019-08-23 09:43:03 +03:00
}
}
2020-04-09 02:55:59 +03:00
return -1;
2019-08-23 09:43:03 +03:00
}
// a combination of tasks 14 and 15 from the Superposition kata
operation StatePrep_BitstringSuperposition (qs : Qubit[], bits : Bool[][]) : Unit {
let L = Length(bits);
2019-10-23 08:51:20 +03:00
Fact(L == 1 or L == 2 or L == 4, "State preparation only supports arrays of 1, 2 or 4 bit strings");
2022-11-23 10:51:15 +03:00
if L == 1 {
2021-01-29 10:09:48 +03:00
for i in 0 .. Length(qs) - 1 {
2022-11-23 10:51:15 +03:00
if bits[0][i] {
2019-08-23 09:43:03 +03:00
X(qs[i]);
}
}
}
2022-11-23 10:51:15 +03:00
if L == 2 {
2019-08-23 09:43:03 +03:00
// find the index of the first bit at which the bit strings are different
let firstDiff = StatePrep_FindFirstDiff(bits[0], bits[1]);
// Hadamard corresponding qubit to create superposition
H(qs[firstDiff]);
// iterate through the bit strings again setting the final state of qubits
2021-01-29 10:09:48 +03:00
for i in 0 .. Length(qs) - 1 {
2022-11-23 10:51:15 +03:00
if bits[0][i] == bits[1][i] {
2019-08-23 09:43:03 +03:00
// if two bits are the same, apply X or nothing
2022-11-23 10:51:15 +03:00
if bits[0][i] {
2019-08-23 09:43:03 +03:00
X(qs[i]);
}
} else {
// if two bits are different, set their difference using CNOT
2022-11-23 10:51:15 +03:00
if i > firstDiff {
2019-08-23 09:43:03 +03:00
CNOT(qs[firstDiff], qs[i]);
2022-11-23 10:51:15 +03:00
if bits[0][i] != bits[0][firstDiff] {
2019-08-23 09:43:03 +03:00
X(qs[i]);
}
}
}
}
}
2022-11-23 10:51:15 +03:00
if L == 4 {
2019-08-23 09:43:03 +03:00
let N = Length(qs);
2021-01-29 10:09:48 +03:00
use anc = Qubit[2];
// Put two ancillas into equal superposition of 2-qubit basis states
ApplyToEachA(H, anc);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// Set up the right pattern on the main qubits with control on ancillas
for i in 0 .. 3 {
for j in 0 .. N - 1 {
2022-11-23 10:51:15 +03:00
if bits[i][j] {
2021-01-29 10:09:48 +03:00
(ControlledOnInt(i, X))(anc, qs[j]);
2019-08-23 09:43:03 +03:00
}
}
2021-01-29 10:09:48 +03:00
}
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// Uncompute the ancillas, using patterns on main qubits as control
for i in 0 .. 3 {
2022-11-23 10:51:15 +03:00
if i % 2 == 1 {
2021-01-29 10:09:48 +03:00
(ControlledOnBitString(bits[i], X))(qs, anc[0]);
}
2022-11-23 10:51:15 +03:00
if i / 2 == 1 {
2021-01-29 10:09:48 +03:00
(ControlledOnBitString(bits[i], X))(qs, anc[1]);
2019-08-23 09:43:03 +03:00
}
}
}
}
operation StatePrep_SuperpositionMeasurement (qs : Qubit[], bits1 : Bool[][], bits2 : Bool[][], state : Int) : Unit {
let bits = state == 0 ? bits1 | bits2;
StatePrep_BitstringSuperposition(qs, bits);
}
2020-01-17 07:28:12 +03:00
// Helper function to convert an array of bit strings to its ket state representation
function IntArrayAsStateName (qubits : Int, bitStrings : Bool[][]) : String {
mutable statename = "";
2021-01-29 10:09:48 +03:00
for i in 0 .. Length(bitStrings) - 1 {
2022-11-23 10:51:15 +03:00
if i > 0 {
2020-01-17 07:28:12 +03:00
set statename += " + ";
}
set statename += BoolArrayAsKetState(bitStrings[i]);
}
return statename;
}
2019-08-23 09:43:03 +03:00
operation CheckSuperpositionBitstringsOneMeasurement (nQubits : Int, ints1 : Int[], ints2 : Int[]): Unit {
let bits1 = Mapped(IntAsBoolArray(_, nQubits), ints1);
let bits2 = Mapped(IntAsBoolArray(_, nQubits), ints2);
DistinguishStates_MultiQubit(nQubits, 2, StatePrep_SuperpositionMeasurement(_, bits1, bits2, _),
2020-01-17 07:28:12 +03:00
SuperpositionOneMeasurement(_, bits1, bits2), 1,
[IntArrayAsStateName(nQubits, bits1), IntArrayAsStateName(nQubits, bits2)]);
2019-08-23 09:43:03 +03:00
}
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T108_SuperpositionOneMeasurement () : Unit {
2020-01-17 07:28:12 +03:00
// note that bit strings in the comments (big endian) are the reverse of the bit strings passed to the solutions (little endian)
2019-08-23 09:43:03 +03:00
CheckSuperpositionBitstringsOneMeasurement(2, [2], // [10]
[1]); // [01]
CheckSuperpositionBitstringsOneMeasurement(2, [2,3], // [10,11]
[1,0]); // [01,00]
CheckSuperpositionBitstringsOneMeasurement(2, [2], // [10]
[1,0]); // [01,00]
CheckSuperpositionBitstringsOneMeasurement(4, [15,7], // [1111,0111]
[0,8]); // [0000,1000]
CheckSuperpositionBitstringsOneMeasurement(4, [15,7], // [1111,0111]
[0,8,10,12]); // [0000,1000,1010,1100]
CheckSuperpositionBitstringsOneMeasurement(5, [30,14,10,6], // [11110,01110,01010,00110]
[1,17,21,25]); // [00001,10001,10101,11001]
2019-10-23 08:51:20 +03:00
CheckSuperpositionBitstringsOneMeasurement(2, [0,2], // [00,10]
[3]); // [11]
CheckSuperpositionBitstringsOneMeasurement(3, [5,7], // [101,111]
[2]); // [010]
CheckSuperpositionBitstringsOneMeasurement(4, [13,11,7,3], // [1101,1011,0111,0011]
[2,4]); // [0010,0100]
2019-08-23 09:43:03 +03:00
}
2020-01-17 07:28:12 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2019-08-23 09:43:03 +03:00
operation CheckSuperpositionBitstringsMeasurement (nQubits : Int, ints1 : Int[], ints2 : Int[]): Unit {
let bits1 = Mapped(IntAsBoolArray(_, nQubits), ints1);
let bits2 = Mapped(IntAsBoolArray(_, nQubits), ints2);
DistinguishStates_MultiQubit(nQubits, 2, StatePrep_SuperpositionMeasurement(_, bits1, bits2, _),
2020-01-17 07:28:12 +03:00
SuperpositionMeasurement(_, bits1, bits2), 0,
[IntArrayAsStateName(nQubits, bits1), IntArrayAsStateName(nQubits, bits2)]);
2019-08-23 09:43:03 +03:00
}
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T109_SuperpositionMeasurement () : Unit {
2020-01-17 07:28:12 +03:00
// note that bit strings in the comments (big endian) are the reverse of the bit strings passed to the solutions (little endian)
2019-08-23 09:43:03 +03:00
CheckSuperpositionBitstringsMeasurement(2, [2], // [10]
[1]); // [01]
CheckSuperpositionBitstringsMeasurement(2, [2,1], // [10,01]
[3,0]); // [11,00]
CheckSuperpositionBitstringsMeasurement(2, [2], // [10]
[3,0]); // [11,00]
CheckSuperpositionBitstringsMeasurement(4, [15,6], // [1111,0110]
[0,14]); // [0000,1110]
CheckSuperpositionBitstringsMeasurement(4, [15,7], // [1111,0111]
[0,8,10,13]); // [0000,1000,1010,1101]
CheckSuperpositionBitstringsMeasurement(5, [30,14,10,7], // [11110,01110,01010,00111]
[1,17,21,27]); // [00001,10001,10101,11011]
2019-10-23 08:51:20 +03:00
CheckSuperpositionBitstringsMeasurement(2, [2,1], // [10,01]
[3]); // [11]
CheckSuperpositionBitstringsMeasurement(3, [7,5], // [111,101]
[2]); // [010]
CheckSuperpositionBitstringsMeasurement(4, [13,11,7,3], // [1101,1011,0111,0011]
[5,2]); // [0101,0010]
2019-08-23 09:43:03 +03:00
}
// ------------------------------------------------------
operation WState_Arbitrary_Reference (qs : Qubit[]) : Unit is Adj + Ctl {
2019-05-04 02:46:04 +03:00
let N = Length(qs);
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if N == 1 {
2019-05-04 02:46:04 +03:00
// base case of recursion: |1⟩
X(qs[0]);
} else {
2020-01-17 07:28:12 +03:00
// |W_N⟩ = |0⟩|W_(N-1)⟩ + |1⟩|0...0⟩
2019-05-04 02:46:04 +03:00
// do a rotation on the first qubit to split it into |0⟩ and |1⟩ with proper weights
// |0⟩ -> sqrt((N-1)/N) |0⟩ + 1/sqrt(N) |1⟩
let theta = ArcSin(1.0 / Sqrt(IntAsDouble(N)));
Ry(2.0 * theta, qs[0]);
2019-08-23 09:43:03 +03:00
2019-05-04 02:46:04 +03:00
// do a zero-controlled W-state generation for qubits 1..N-1
X(qs[0]);
Controlled WState_Arbitrary_Reference(qs[0 .. 0], qs[1 .. N - 1]);
X(qs[0]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation StatePrep_AllZerosOrWState (qs : Qubit[], state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if state == 1 {
2018-10-30 18:48:56 +03:00
// prep W state
WState_Arbitrary_Reference(qs);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T110_AllZerosOrWState () : Unit {
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
for i in 2 .. 6 {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(i, 2, StatePrep_AllZerosOrWState, AllZerosOrWState, 0, ["|0...0⟩", "|W⟩"]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2019-08-23 09:43:03 +03:00
operation GHZ_State_Reference (qs : Qubit[]) : Unit is Adj {
2020-04-09 02:55:59 +03:00
H(Head(qs));
2021-01-29 10:09:48 +03:00
for q in Rest(qs) {
2020-04-09 02:55:59 +03:00
CNOT(Head(qs), q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation StatePrep_GHZOrWState (qs : Qubit[], state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if state == 0 {
2018-10-30 18:48:56 +03:00
// prep GHZ state
GHZ_State_Reference(qs);
} else {
// prep W state
WState_Arbitrary_Reference(qs);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T111_GHZOrWState () : Unit {
2021-01-29 10:09:48 +03:00
for i in 2 .. 6 {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(i, 2, StatePrep_GHZOrWState, GHZOrWState, 0, ["|GHZ⟩", "|W⟩"]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-08-06 20:56:25 +03:00
// 0 - |Φ⁺⟩ = (|00⟩ + |11⟩) / sqrt(2)
// 1 - |Φ⁻⟩ = (|00⟩ - |11⟩) / sqrt(2)
// 2 - |Ψ⁺⟩ = (|01⟩ + |10⟩) / sqrt(2)
// 3 - |Ψ⁻⟩ = (|01⟩ - |10⟩) / sqrt(2)
2018-10-30 18:48:56 +03:00
operation StatePrep_BellState (qs : Qubit[], state : Int) : Unit {
H(qs[0]);
CNOT(qs[0], qs[1]);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// now we have |00⟩ + |11⟩ - modify it based on state arg
2022-11-23 10:51:15 +03:00
if state % 2 == 1 {
2018-10-30 18:48:56 +03:00
// negative phase
Z(qs[1]);
2018-07-12 02:35:59 +03:00
}
2022-11-23 10:51:15 +03:00
if state / 2 == 1 {
2018-10-30 18:48:56 +03:00
X(qs[1]);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T112_BellState () : Unit {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(2, 4, StatePrep_BellState, BellState, 0, ["|Φ⁺⟩ = (|00⟩ + |11⟩) / sqrt(2)",
"|Φ⁻⟩ = (|00⟩ - |11⟩) / sqrt(2)",
"|Ψ⁺⟩ = (|01⟩ + |10⟩) / sqrt(2)",
"|Ψ⁻⟩ = (|01⟩ - |10⟩) / sqrt(2)"]);
2018-10-30 18:48:56 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-08-06 20:56:25 +03:00
// 0 - (|00⟩ + |01⟩ + |10⟩ + |11⟩) / 2
// 1 - (|00⟩ - |01⟩ + |10⟩ - |11⟩) / 2
// 2 - (|00⟩ + |01⟩ - |10⟩ - |11⟩) / 2
// 3 - (|00⟩ - |01⟩ - |10⟩ + |11⟩) / 2
2018-10-30 18:48:56 +03:00
operation StatePrep_TwoQubitState (qs : Qubit[], state : Int) : Unit {
// start with state prep of basis vectors
StatePrep_BasisStateMeasurement(qs, state);
H(qs[0]);
H(qs[1]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T113_TwoQubitState () : Unit {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(2, 4, StatePrep_TwoQubitState, TwoQubitState, 0, ["(|00⟩ + |01⟩ + |10⟩ + |11⟩) / 2",
"(|00⟩ - |01⟩ + |10⟩ - |11⟩) / 2",
"(|00⟩ + |01⟩ - |10⟩ - |11⟩) / 2",
"(|00⟩ - |01⟩ - |10⟩ + |11⟩) / 2"]);
2019-04-26 01:57:30 +03:00
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// ------------------------------------------------------
2018-08-06 20:56:25 +03:00
// 0 - ( |00⟩ - |01⟩ - |10⟩ - |11⟩) / 2
// 1 - (-|00⟩ + |01⟩ - |10⟩ - |11⟩) / 2
// 2 - (-|00⟩ - |01⟩ + |10⟩ - |11⟩) / 2
// 3 - (-|00⟩ - |01⟩ - |10⟩ + |11⟩) / 2
2018-10-30 18:48:56 +03:00
operation StatePrep_TwoQubitStatePartTwo (qs : Qubit[], state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// start with state prep of basis vectors
StatePrep_BasisStateMeasurement(qs, state);
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// now apply all gates for unitary in reference impl (in reverse + adjoint)
2020-01-17 07:28:12 +03:00
within {
ApplyToEachA(X, qs);
Controlled Z([qs[0]], qs[1]);
ApplyToEachA(X, qs);
} apply {
ApplyToEach(H, qs);
}
2018-10-30 18:48:56 +03:00
SWAP(qs[0], qs[1]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T114_TwoQubitStatePartTwo () : Unit {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(2, 4, StatePrep_TwoQubitStatePartTwo, TwoQubitStatePartTwo, 0, ["(+|00⟩ - |01⟩ - |10⟩ - |11⟩) / 2",
"(-|00⟩ + |01⟩ - |10⟩ - |11⟩) / 2",
"(-|00⟩ - |01⟩ + |10⟩ - |11⟩) / 2",
"(-|00⟩ - |01⟩ - |10⟩ + |11⟩) / 2"]);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// ------------------------------------------------------
2019-08-23 09:43:03 +03:00
operation StatePrep_ThreeQubitMeasurement (qs : Qubit[], state : Int) : Unit is Adj {
2019-05-04 02:46:04 +03:00
WState_Arbitrary_Reference(qs);
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if state == 0 {
2019-05-04 02:46:04 +03:00
// prep 1/sqrt(3) ( |100⟩ + ω |010⟩ + ω² |001⟩ )
R1(2.0 * PI() / 3.0, qs[1]);
R1(4.0 * PI() / 3.0, qs[2]);
} else {
// prep 1/sqrt(3) ( |100⟩ + ω² |010⟩ + ω |001⟩ )
R1(4.0 * PI() / 3.0, qs[1]);
R1(2.0 * PI() / 3.0, qs[2]);
2019-04-20 20:16:25 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-09-02 22:12:41 +03:00
@Test("Microsoft.Quantum.Katas.CounterSimulator")
2020-10-15 14:36:23 +03:00
operation T115_ThreeQubitMeasurement () : Unit {
2020-01-17 07:28:12 +03:00
DistinguishStates_MultiQubit(3, 2, StatePrep_ThreeQubitMeasurement, ThreeQubitMeasurement, 0,
["1/sqrt(3) (|100⟩ + ω |010⟩ + ω² |001⟩)",
"1/sqrt(3) (|100⟩ + ω² |010⟩ + ω |001⟩)"]);
2019-04-20 20:16:25 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
2018-07-12 02:35:59 +03:00
//////////////////////////////////////////////////////////////////
2019-04-26 01:57:30 +03:00
// Part II*. Discriminating Nonorthogonal States
//////////////////////////////////////////////////////////////////
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
operation StatePrep_IsQubitZeroOrPlus (q : Qubit, state : Int) : Unit {
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if state != 0 {
2018-10-30 18:48:56 +03:00
// convert |0⟩ to |+⟩
H(q);
2018-07-12 02:35:59 +03:00
}
}
2019-08-23 09:43:03 +03:00
2018-07-12 02:35:59 +03:00
// "Framework" operation for testing multi-qubit tasks for distinguishing states of an array of qubits
// with Int return. Framework tests against a threshold parameter for the fraction of runs that must succeed.
2018-10-30 18:48:56 +03:00
operation DistinguishStates_MultiQubit_Threshold (Nqubit : Int, Nstate : Int, threshold : Double, statePrep : ((Qubit, Int) => Unit), testImpl : (Qubit => Bool)) : Unit {
let nTotal = 1000;
mutable nOk = 0;
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
use qs = Qubit[Nqubit];
for i in 1 .. nTotal {
// get a random integer to define the state of the qubits
let state = DrawRandomInt(0, Nstate - 1);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// do state prep: convert |0⟩ to outcome with return equal to state
statePrep(qs[0], state);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// get the solution's answer and verify that it's a match
let ans = testImpl(qs[0]);
2022-11-23 10:51:15 +03:00
if ans == (state == 0) {
2021-01-29 10:09:48 +03:00
set nOk += 1;
2018-07-12 02:35:59 +03:00
}
2021-01-29 10:09:48 +03:00
// we're not checking the state of the qubit after the operation
ResetAll(qs);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if IntAsDouble(nOk) < threshold * IntAsDouble(nTotal) {
2018-10-30 18:48:56 +03:00
fail $"{nTotal - nOk} test runs out of {nTotal} returned incorrect state which does not meet the required threshold of at least {threshold * 100.0}%.";
}
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2020-12-22 23:02:11 +03:00
@Test("QuantumSimulator")
2020-10-15 14:36:23 +03:00
operation T201_IsQubitZeroOrPlus () : Unit {
2019-04-26 01:57:30 +03:00
DistinguishStates_MultiQubit_Threshold(1, 2, 0.8, StatePrep_IsQubitZeroOrPlus, IsQubitPlusOrZero);
}
2019-08-23 09:43:03 +03:00
2019-04-26 01:57:30 +03:00
// ------------------------------------------------------
2018-07-12 02:35:59 +03:00
// "Framework" operation for testing multi-qubit tasks for distinguishing states of an array of qubits
// with Int return. Framework tests against a threshold parameter for the fraction of runs that must succeed.
// Framework tests in the USD scenario, i.e., it is allowed to respond "inconclusive" (with some probability)
2018-10-30 18:48:56 +03:00
// up to given threshold, but it is never allowed to err if an actual conclusive response is given.
operation USD_DistinguishStates_MultiQubit_Threshold (Nqubit : Int, Nstate : Int, thresholdInconcl : Double, thresholdConcl : Double, statePrep : ((Qubit, Int) => Unit), testImpl : (Qubit => Int)) : Unit {
let nTotal = 10000;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// counts total inconclusive answers
mutable nInconc = 0;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// counts total conclusive |0⟩ state identifications
mutable nConclOne = 0;
2019-08-23 09:43:03 +03:00
2018-10-30 18:48:56 +03:00
// counts total conclusive |+> state identifications
mutable nConclPlus = 0;
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
use qs = Qubit[Nqubit];
for i in 1 .. nTotal {
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// get a random integer to define the state of the qubits
let state = DrawRandomInt(0, Nstate - 1);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// do state prep: convert |0⟩ to outcome with return equal to state
statePrep(qs[0], state);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// get the solution's answer and verify that it's a match
let ans = testImpl(qs[0]);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// check that the answer is actually in allowed range
if (ans < -1 or ans > 1) {
fail $"state {state} led to invalid response {ans}.";
}
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// keep track of the number of inconclusive answers given
2022-11-23 10:51:15 +03:00
if ans == -1 {
2021-01-29 10:09:48 +03:00
set nInconc += 1;
}
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
if (ans == 0 and state == 0) {
set nConclOne += 1;
}
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
if (ans == 1 and state == 1) {
set nConclPlus += 1;
}
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// check if upon conclusive result the answer is actually correct
if (ans == 0 and state == 1 or ans == 1 and state == 0) {
fail $"state {state} led to incorrect conclusive response {ans}.";
2018-07-12 02:35:59 +03:00
}
2021-01-29 10:09:48 +03:00
// we're not checking the state of the qubit after the operation
ResetAll(qs);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if IntAsDouble(nInconc) > thresholdInconcl * IntAsDouble(nTotal) {
2018-10-30 18:48:56 +03:00
fail $"{nInconc} test runs out of {nTotal} returned inconclusive which does not meet the required threshold of at most {thresholdInconcl * 100.0}%.";
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if IntAsDouble(nConclOne) < thresholdConcl * IntAsDouble(nTotal) {
2018-10-30 18:48:56 +03:00
fail $"Only {nConclOne} test runs out of {nTotal} returned conclusive |0⟩ which does not meet the required threshold of at least {thresholdConcl * 100.0}%.";
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if IntAsDouble(nConclPlus) < thresholdConcl * IntAsDouble(nTotal) {
2018-10-30 18:48:56 +03:00
fail $"Only {nConclPlus} test runs out of {nTotal} returned conclusive |+> which does not meet the required threshold of at least {thresholdConcl * 100.0}%.";
}
}
2019-08-23 09:43:03 +03:00
2020-12-22 23:02:11 +03:00
@Test("QuantumSimulator")
2020-10-15 14:36:23 +03:00
operation T202_IsQubitZeroOrPlusSimpleUSD () : Unit {
2018-10-30 18:48:56 +03:00
USD_DistinguishStates_MultiQubit_Threshold(1, 2, 0.8, 0.1, StatePrep_IsQubitZeroOrPlus, IsQubitPlusZeroOrInconclusiveSimpleUSD);
2018-07-12 02:35:59 +03:00
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// ------------------------------------------------------
operation StatePrep_IsQubitNotInABC (q : Qubit, state : Int) : Unit {
let alpha = (2.0 * PI()) / 3.0;
H(q);
2019-08-23 09:43:03 +03:00
2022-11-23 10:51:15 +03:00
if state == 0 {
2019-04-20 20:16:25 +03:00
// convert |0⟩ to 1/sqrt(2) (|0⟩ + |1⟩)
}
2022-11-23 10:51:15 +03:00
elif state == 1 {
2019-04-20 20:16:25 +03:00
// convert |0⟩ to 1/sqrt(2) (|0⟩ + ω |1⟩), where ω = exp(2iπ/3)
R1(alpha, q);
}
else {
// convert |0⟩ to 1/sqrt(2) (|0⟩ + ω² |1⟩), where ω = exp(2iπ/3)
R1(2.0 * alpha, q);
}
}
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
// "Framework" operation for testing multi-qubit tasks for distinguishing states of an array of qubits
// with Int return. Framework tests instances of the Peres/Wootters game. In this game, one of three
// "trine" states is presented and the algorithm must answer with a label that does not correspond
// to one of the label of the input state.
operation ABC_DistinguishStates_MultiQubit_Threshold (Nqubit : Int, Nstate : Int, statePrep : ((Qubit, Int) => Unit), testImpl : (Qubit => Int)) : Unit {
2019-08-23 09:43:03 +03:00
2019-04-20 20:16:25 +03:00
let nTotal = 1000;
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
use qs = Qubit[Nqubit];
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
for i in 1 .. nTotal {
// get a random integer to define the state of the qubits
let state = DrawRandomInt(0, Nstate - 1);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// do state prep: convert |0⟩ to outcome with return equal to state
statePrep(qs[0], state);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// get the solution's answer and verify that it's a match
let ans = testImpl(qs[0]);
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// check that the value of ans is 0, 1 or 2
if (ans < 0 or ans > 2) {
fail "You can not return any value other than 0, 1 or 2.";
}
2019-08-23 09:43:03 +03:00
2021-01-29 10:09:48 +03:00
// check if upon conclusive result the answer is actually correct
2022-11-23 10:51:15 +03:00
if ans == state {
2021-01-29 10:09:48 +03:00
fail $"State {state} led to incorrect conclusive response {ans}.";
2019-04-20 20:16:25 +03:00
}
2021-01-29 10:09:48 +03:00
// we're not checking the state of the qubit after the operation
ResetAll(qs);
2019-04-20 20:16:25 +03:00
}
}
2019-08-23 09:43:03 +03:00
2020-12-22 23:02:11 +03:00
@Test("QuantumSimulator")
2020-10-15 14:36:23 +03:00
operation T203_IsQubitNotInABC () : Unit {
2019-04-20 20:16:25 +03:00
ABC_DistinguishStates_MultiQubit_Threshold(1, 3, StatePrep_IsQubitNotInABC, IsQubitNotInABC);
}
2018-10-30 18:48:56 +03:00
}