Skip to content

Commit 1ab93a5

Browse files
committed
suggested details
1 parent 08ae5d3 commit 1ab93a5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/sage/coding/binary_code.pyx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3666,10 +3666,9 @@ cdef class BinaryCodeClassifier:
36663666
if Theta.wd_min_cell_rep[Theta.wd_find(i)] == i:
36673667
state = 11
36683668
continue
3669-
else:
3670-
if Theta.col_min_cell_rep[Theta.col_find(tvc)] == tvc:
3671-
state = 11
3672-
continue
3669+
elif Theta.col_min_cell_rep[Theta.col_find(tvc)] == tvc:
3670+
state = 11
3671+
continue
36733672

36743673
# Otherwise, proceed to where zeta meets nu:
36753674
k = h

src/sage/groups/perm_gps/partn_ref/refinement_binary.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,11 +477,11 @@ cdef class NonlinearBinaryCodeStruct(BinaryCodeStruct):
477477
def run(self, partition=None):
478478
"""
479479
Perform the canonical labeling and automorphism group computation,
480-
storing results to self.
480+
storing results to ``self``.
481481
482482
INPUT:
483483
484-
- partition -- an optional list of lists partition of the columns.
484+
- ``partition`` -- an optional list of lists partition of the columns.
485485
default is the unit partition.
486486
487487
EXAMPLES::

0 commit comments

Comments
 (0)