File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
groups/perm_gps/partn_ref Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -3666,10 +3666,9 @@ cdef class BinaryCodeClassifier:
3666
3666
if Theta.wd_min_cell_rep[Theta.wd_find(i)] == i:
3667
3667
state = 11
3668
3668
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
3673
3672
3674
3673
# Otherwise, proceed to where zeta meets nu:
3675
3674
k = h
Original file line number Diff line number Diff line change @@ -477,11 +477,11 @@ cdef class NonlinearBinaryCodeStruct(BinaryCodeStruct):
477
477
def run (self , partition = None ):
478
478
"""
479
479
Perform the canonical labeling and automorphism group computation,
480
- storing results to self.
480
+ storing results to `` self`` .
481
481
482
482
INPUT:
483
483
484
- - partition -- an optional list of lists partition of the columns.
484
+ - `` partition`` -- an optional list of lists partition of the columns.
485
485
default is the unit partition.
486
486
487
487
EXAMPLES::
You can’t perform that action at this time.
0 commit comments