-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathqecc.cpp
34 lines (25 loc) · 1.11 KB
/
qecc.cpp
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
// Quantum error correcting codes
// Source: ./examples/qecc.cpp
#include <iostream>
#include "qpp/qpp.hpp"
int main() {
using namespace qpp;
ket a0 = Codes::codeword(Codes::Type::FIVE_QUBIT, 0);
ket a1 = Codes::codeword(Codes::Type::FIVE_QUBIT, 1);
ket b0 = Codes::codeword(Codes::Type::STEANE_SEVEN_QUBIT, 0);
ket b1 = Codes::codeword(Codes::Type::STEANE_SEVEN_QUBIT, 1);
ket c0 = Codes::codeword(Codes::Type::SHOR_NINE_QUBIT, 0);
ket c1 = Codes::codeword(Codes::Type::SHOR_NINE_QUBIT, 1);
std::cout << ">> [[5, 1, 3]] Five qubit code.\n";
std::cout << ">> Checking codeword orthogonality.\n";
std::cout << ">> |<0L|1L>| = ";
std::cout << disp(adjoint(a0) * a1) << '\n';
std::cout << ">> [[7, 1, 3]] Seven qubit Steane code.\n";
std::cout << ">> Checking codeword orthogonality.\n";
std::cout << ">> |<0L|1L>| = ";
std::cout << disp(adjoint(b0) * b1) << '\n';
std::cout << ">> [[9, 1, 3]] Nine qubit Shor code.\n";
std::cout << ">> Checking codeword orthogonality.\n";
std::cout << ">> |<0L|1L>| = ";
std::cout << disp(adjoint(c0) * c1) << '\n';
}