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

Commit

Permalink
trac #16662: A comment about n<N-2
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanncohen committed Aug 15, 2014
1 parent 7e0480e commit a9b594f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sage/combinat/designs/orthogonal_arrays_recursive.py
Expand Up @@ -981,7 +981,8 @@ def find_thwart_lemma_3_5(k,N):
k = int(k)
N = int(N)

for n in prime_powers(k+2,N-2): # There must exist a OA(k+3,n)
for n in prime_powers(k+2,N-2): # There must exist a OA(k+3,n) thus n>=k+2
# At least 3 columns are nonempty thus n<N-2

# we look for (m,n,a,b,c,d) with N = mn + a + b + c (+d) and
# 0 <= a,b,c,d <= n
Expand Down

0 comments on commit a9b594f

Please sign in to comment.