Skip to content

Commit 75af3aa

Browse files
committed
minor details
1 parent bcc4317 commit 75af3aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/combinat/designs/orthogonal_arrays_find_recursive.pyx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ cpdef find_brouwer_separable_design(int k,int n) noexcept:
755755

756756
# i)
757757
if (x == 0 and
758-
is_available(k, t) and is_available(k, t + q)):
758+
is_available(k, t) and is_available(k, t + q)):
759759
return brouwer_separable_design, (k, t, q, x)
760760

761761
# ii)
@@ -803,8 +803,8 @@ from sage.combinat.designs.database import QDM as __QDM
803803
cdef dict _QDM = __QDM
804804
cdef dict ioa_indexed_by_n_minus_x = {}
805805
for x in _QDM.itervalues():
806-
for (n,_,_,u),(k,_) in x.items():
807-
if u>1:
806+
for (n, _, _, u), (k, _) in x.items():
807+
if u > 1:
808808
if n not in ioa_indexed_by_n_minus_x:
809809
ioa_indexed_by_n_minus_x[n] = []
810810
ioa_indexed_by_n_minus_x[n].append((k, u))

0 commit comments

Comments
 (0)