Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit a20dc70

Browse files
committed
Always check williamson necessary conditions
1 parent a028891 commit a20dc70

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/sage/combinat/matrices/hadamard_matrix.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def hadamard_matrix_paleyII(n):
223223

224224
return normalise_hadamard(H)
225225

226-
def hadamard_matrix_williamson_type(a, b, c, d, check=False):
226+
def hadamard_matrix_williamson_type(a, b, c, d, check=True):
227227
"""
228228
Construction of Williamson type Hadamard matrix.
229229
@@ -241,7 +241,7 @@ def hadamard_matrix_williamson_type(a, b, c, d, check=False):
241241
242242
- ``c`` -- 1,-1 list specifying the 1st row of `D`
243243
244-
- ``check`` (boolean) -- Whether to check that the input is correct and that the output is an hadamard matrix
244+
- ``check`` (boolean) -- Whether to check that the output is an hadamard matrix before returning it
245245
246246
EXAMPLES::
247247
@@ -272,10 +272,9 @@ def hadamard_matrix_williamson_type(a, b, c, d, check=False):
272272
"""
273273
A, B, C, D = map(matrix.circulant, [a, b, c, d])
274274

275-
if check:
276-
n = len(a)
277-
assert len(a) == len(b) == len(c) == len(d)
278-
assert A*A.T+B*B.T+C*C.T+D*D.T==4*n*I(n)
275+
n = len(a)
276+
assert len(a) == len(b) == len(c) == len(d)
277+
assert A*A.T+B*B.T+C*C.T+D*D.T==4*n*I(n)
279278

280279
M = block_matrix([[ A, B, C, D],
281280
[-B, A, -D, C],

0 commit comments

Comments
 (0)