Skip to content

Commit 2d0d02c

Browse files
committed
oops, details fixed
1 parent 22abbb4 commit 2d0d02c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/combinat/designs/database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4424,7 +4424,7 @@ def BIBD_141_6_1():
44244424

44254425
gens = lambda B: [frozenset(((x * 16) % 35, (y + 1) % 3 if y != a else a)
44264426
if (x, y) != inf else inf for x, y in B),
4427-
frozenset(((x + 1) % 35, y )
4427+
frozenset(((x + 1) % 35, y)
44284428
if (x, y) != inf else inf for x, y in B)]
44294429
bibd = RecursivelyEnumeratedSet([frozenset(e) for e in bibd],
44304430
successors=gens)
@@ -4553,7 +4553,7 @@ def BIBD_196_6_1():
45534553

45544554
gens = lambda B: [frozenset(((x * 30) % 49, (y + 1) % 3 if y != a else a)
45554555
for x, y in B),
4556-
frozenset(((x + 1) % 49, y)
4556+
frozenset(((x + 1) % 49, y)
45574557
for x, y in B)]
45584558
bibd = RecursivelyEnumeratedSet([frozenset(e) for e in bibd],
45594559
successors=gens)

0 commit comments

Comments
 (0)