Skip to content

Commit 8ef97b4

Browse files
Fix Some Sample Spacing (#930)
1 parent a1089cf commit 8ef97b4

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

samples/algorithms/DeutschJozsaNISQ.qs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
///
99
/// This Q# program implements the Deutsch–Jozsa algorithm.
1010
namespace Sample {
11-
1211
open Microsoft.Quantum.Measurement;
1312

1413
@EntryPoint()

samples/algorithms/JointMeasurement.qs

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
/// of 2-outcome measurements to multiple qubits and other bases.
77
namespace Sample {
88
open Microsoft.Quantum.Diagnostics;
9+
910
@EntryPoint()
10-
operation Main() : (Result, Result[]) {
11+
operation Main() : (Result, Result[]) {
1112
// Prepare an entangled state.
1213
use qs = Qubit[2]; // |00〉
1314
H(qs[0]); // 1/sqrt(2)(|00〉 + |10〉)
@@ -20,7 +21,7 @@ namespace Sample {
2021
// of the first two qubits. In this case, the parity measurement result
2122
// will always be `Zero`.
2223
// Notice how the state was not collapsed by the joint measurement.
23-
let parityResult = Measure([PauliZ, PauliZ], qs[...1]);
24+
let parityResult = Measure([PauliZ, PauliZ], qs[...1]);
2425
DumpMachine();
2526

2627
// However, if we perform a measurement just on the first qubit, we can
@@ -29,12 +30,12 @@ namespace Sample {
2930
DumpMachine();
3031

3132
// Measuring the last qubit does not change the quantum state
32-
// since the state of the second qubit collapsed when the first qubit
33+
// since the state of the second qubit collapsed when the first qubit
3334
// was measured because they were entangled.
3435
let secondQubitResult = M(qs[1]);
3536
DumpMachine();
3637

3738
ResetAll(qs);
3839
return (parityResult, [firstQubitResult, secondQubitResult]);
3940
}
40-
}
41+
}

samples/algorithms/Measurement.qs

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
/// This Q# program exemplifies different types of measurements.
1313
namespace Sample {
1414
open Microsoft.Quantum.Measurement;
15+
1516
@EntryPoint()
1617
operation Main () : (Result, Result[]) {
1718
// The `M` operation performs a measurement of a single qubit in the
@@ -27,4 +28,4 @@ namespace Sample {
2728

2829
return (result, results);
2930
}
30-
}
31+
}

0 commit comments

Comments
 (0)