From 6f6cf9ae4805c70b86efd88693c6b4a1634e63ab Mon Sep 17 00:00:00 2001 From: Fe-r-oz Date: Fri, 29 Nov 2024 13:40:03 +0500 Subject: [PATCH] fix typo --- test/test_ecc_golay.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_ecc_golay.jl b/test/test_ecc_golay.jl index 0790a00d1..1f81b7b0e 100644 --- a/test/test_ecc_golay.jl +++ b/test/test_ecc_golay.jl @@ -111,6 +111,7 @@ 0 1 1 0 1 1 1 0 0 0 1 1; 1 1 1 1 1 1 1 1 1 1 1 0] + H = parity_checks(Golay(24)) @test echelon_form(matrix(GF(2), A)) == echelon_form(matrix(GF(2), H[1:12, 1:12])) # test self-duality for extended Golay code, G == H @test echelon_form(matrix(GF(2), generator(Golay(24)))) == echelon_form(matrix(GF(2), parity_checks(Golay(24))))