diff --git a/test/test_ecc.jl b/test/test_ecc.jl index a77f30fef..7a510c2f7 100644 --- a/test/test_ecc.jl +++ b/test/test_ecc.jl @@ -8,10 +8,10 @@ codes = [ Steane7(), Shor9(), Perfect5(), - Cleve8(), - QHamming(3), QHamming(5), + Cleve8(), QHamming(3), QHamming(5), CSS([0 1 1 0; 1 1 0 0], [1 1 1 1]), ] + ## function test_naive_syndrome(c::AbstractECC, e::Bool) diff --git a/test/test_ecc_decoder_all_setups.jl b/test/test_ecc_decoder_all_setups.jl index 82d88064d..be3ea9263 100644 --- a/test/test_ecc_decoder_all_setups.jl +++ b/test/test_ecc_decoder_all_setups.jl @@ -16,8 +16,7 @@ import PyQDecoders Steane7(), Shor9(), Perfect5(), - Cleve8(), - QHamming(3), QHamming(5), + Cleve8(), QHamming(3), QHamming(5), ] noise = 0.001 @@ -40,6 +39,7 @@ import PyQDecoders end ## + @testset "matching decoder" begin codes = [ Toric(8,8), diff --git a/test/test_ecc_syndromes.jl b/test/test_ecc_syndromes.jl index 53a5c3dc2..92b941498 100644 --- a/test/test_ecc_syndromes.jl +++ b/test/test_ecc_syndromes.jl @@ -9,8 +9,7 @@ codes = [ Steane7(), Shor9(), Perfect5(), - Cleve8(), - QHamming(3), QHamming(5), + Cleve8(), QHamming(3), QHamming(5), CSS([0 1 1 0; 1 1 0 0], [1 1 1 1]), Toric(3,3), Toric(3,6), @@ -19,6 +18,7 @@ codes = [ ] ## + function pframe_naive_vs_shor_syndrome(code) ecirc = naive_encoding_circuit(code) naive_scirc, naive_ancillaries = naive_syndrome_circuit(code)