Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[[2ᵐ - 1, 1, 3]] quantum Reed-Muller code #302

Merged
merged 15 commits into from
Sep 27, 2024
Merged
2 changes: 1 addition & 1 deletion test/test_ecc_quantumreedmuller.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@test code_n(QuantumReedMuller(m)) == 2^m - 1
@test code_k(QuantumReedMuller(m)) == 1
@test distance(QuantumReedMuller(m)) == 3
@test H == parity_checks(CSS(parity_checks_x(QuantumReedMuller(m)), parity_checks_z(QuantumReedMuller(m))))
@test H == stab_to_gf2(parity_checks(CSS(parity_checks_x(QuantumReedMuller(m)), parity_checks_z(QuantumReedMuller(m)))))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah, good catch

# [[15,1,3]] qrm code from table 1 of https://arxiv.org/pdf/1705.0010
qrm₁₅₁₃ = S"ZIZIZIZIZIZIZIZ
IZZIIZZIIZZIIZZ
Expand Down
Loading