Skip to content

Commit

Permalink
add spaces after some names
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpase committed May 22, 2024
1 parent 473ca44 commit ee798a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/combinat/matrices/hadamard_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -1762,7 +1762,7 @@ def report_name(nam):
return report_name(name)
M = hadamard_matrix_paleyII(n)
elif n == 4 or n % 8 == 0 and hadamard_matrix(n//2, existence=True) is True:
name = "doubling" + name
name = "doubling " + name
if existence:
return report_name(name)
had = hadamard_matrix(n//2, check=False)
Expand All @@ -1773,7 +1773,7 @@ def report_name(nam):
for i in range(R)])
M = chad1.stack(chad2)
elif is_prime_power(n - 1) and (n - 1) % 4 == 3:
name = "paleyI" + name
name = "paleyI " + name
if existence:
return report_name(name)
M = hadamard_matrix_paleyI(n)
Expand Down

0 comments on commit ee798a3

Please sign in to comment.