44 SECTION(
"correctness" ) {
46 int qubit = GENERATE( range(0,NUM_QUBITS) );
47 int outcome = GENERATE( 0, 1 );
50 GENERATE( range(0,10) );
52 SECTION(
"state-vector" ) {
60 for (
size_t ind=0; ind<vecRef.size(); ind++) {
61 int bit = (ind >> qubit) & 1;
63 prob += pow(abs(vecRef[ind]), 2);
67 for (
size_t ind=0; ind<vecRef.size(); ind++) {
68 int bit = (ind >> qubit) & 1;
70 vecRef[ind] /= sqrt(prob);
75 qreal res = collapseToOutcome(vec, qubit, outcome);
76 REQUIRE( res == Approx(prob) );
79 SECTION(
"density-matrix" ) {
87 for (
size_t ind=0; ind<matRef.size(); ind++) {
88 int bit = (ind >> qubit) & 1;
90 tr += matRef[ind][ind];
92 REQUIRE( imag(tr) == Approx(0).margin(REAL_EPS) );
93 qreal prob = real(tr);
96 for (
size_t r=0; r<matRef.size(); r++) {
97 for (
size_t c=0; c<matRef.size(); c++) {
98 int ketBit = (c >> qubit) & 1;
99 int braBit = (r >> qubit) & 1;
101 if (ketBit == outcome && braBit == outcome)
102 matRef[r][c] /= prob;
108 qreal res = collapseToOutcome(mat, qubit, outcome);
109 REQUIRE( res == Approx(prob) );
113 SECTION(
"input validation" ) {
115 SECTION(
"qubit index" ) {
117 int qubit = GENERATE( -1, NUM_QUBITS );
119 REQUIRE_THROWS_WITH( collapseToOutcome(mat, qubit, outcome), ContainsSubstring(
"Invalid target qubit") );
121 SECTION(
"outcome value" ) {
124 int outcome = GENERATE( -1, 2 );
125 REQUIRE_THROWS_WITH( collapseToOutcome(mat, qubit, outcome), ContainsSubstring(
"qubit measurement outcome") && ContainsSubstring(
"invalid") );
127 SECTION(
"outcome probability" ) {
130 REQUIRE_THROWS_WITH( collapseToOutcome(vec, 0, 1), ContainsSubstring(
"impossibly unlikely") );
132 REQUIRE_THROWS_WITH( collapseToOutcome(vec, 0, 0), ContainsSubstring(
"impossibly unlikely") );
150 SECTION(
"correctness" ) {
152 int qubit = GENERATE( range(0,NUM_QUBITS) );
155 GENERATE( range(0,10) );
157 SECTION(
"state-vector" ) {
162 int outcome = measure(vec, qubit);
163 REQUIRE( (outcome == 0 || outcome == 1) );
167 for (
size_t ind=0; ind<vecRef.size(); ind++) {
168 int bit = (ind >> qubit) & 1;
170 prob += pow(abs(vecRef[ind]), 2);
173 REQUIRE( prob > REAL_EPS );
176 for (
size_t ind=0; ind<vecRef.size(); ind++) {
177 int bit = (ind >> qubit) & 1;
179 vecRef[ind] /= sqrt(prob);
185 SECTION(
"density-matrix" ) {
190 int outcome = measure(mat, qubit);
191 REQUIRE( (outcome == 0 || outcome == 1) );
195 for (
size_t ind=0; ind<matRef.size(); ind++) {
196 int bit = (ind >> qubit) & 1;
198 prob += real(matRef[ind][ind]);
201 REQUIRE( prob > REAL_EPS );
204 for (
size_t r=0; r<matRef.size(); r++) {
205 for (
size_t c=0; c<matRef.size(); c++) {
206 int ketBit = (c >> qubit) & 1;
207 int braBit = (r >> qubit) & 1;
209 if (ketBit == outcome && braBit == outcome)
210 matRef[r][c] /= prob;
219 SECTION(
"input validation" ) {
221 SECTION(
"qubit index" ) {
223 int qubit = GENERATE( -1, NUM_QUBITS );
224 REQUIRE_THROWS_WITH( measure(vec, qubit), ContainsSubstring(
"Invalid target qubit") );
242 SECTION(
"correctness" ) {
244 int qubit = GENERATE( range(0,NUM_QUBITS) );
247 GENERATE( range(0,10) );
249 SECTION(
"state-vector" ) {
255 int outcome = measureWithStats(vec, qubit, &res);
256 REQUIRE( (outcome == 0 || outcome == 1) );
260 for (
size_t ind=0; ind<vecRef.size(); ind++) {
261 int bit = (ind >> qubit) & 1;
263 prob += pow(abs(vecRef[ind]), 2);
266 REQUIRE( prob == Approx(res) );
269 for (
size_t ind=0; ind<vecRef.size(); ind++) {
270 int bit = (ind >> qubit) & 1;
272 vecRef[ind] /= sqrt(prob);
278 SECTION(
"density-matrix" ) {
284 int outcome = measureWithStats(mat, qubit, &res);
285 REQUIRE( (outcome == 0 || outcome == 1) );
289 for (
size_t ind=0; ind<matRef.size(); ind++) {
290 int bit = (ind >> qubit) & 1;
292 prob += real(matRef[ind][ind]);
295 REQUIRE( prob == Approx(res) );
298 for (
size_t r=0; r<matRef.size(); r++) {
299 for (
size_t c=0; c<matRef.size(); c++) {
300 int ketBit = (c >> qubit) & 1;
301 int braBit = (r >> qubit) & 1;
303 if (ketBit == outcome && braBit == outcome)
304 matRef[r][c] /= prob;
313 SECTION(
"input validation" ) {
315 SECTION(
"qubit index" ) {
317 int qubit = GENERATE( -1, NUM_QUBITS );
319 REQUIRE_THROWS_WITH( measureWithStats(vec, qubit, &res), ContainsSubstring(
"Invalid target qubit") );