Skip to content

Commit

Permalink
Fix bug in AreDerivedEquivalent
Browse files Browse the repository at this point in the history
pointed out by Joseph Winspeare.
  • Loading branch information
sunnyquiver committed Jun 18, 2024
1 parent 423aee0 commit 87aee76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/combinatorialmap.gi
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ InstallMethod( AreDerivedEquivalent ,
od;

for pair in wnumberBasisA do
if IsOddInt(pair[1]) or IsOddInt[pair[2]] then
if IsOddInt( pair[1] ) or IsOddInt( pair[2] ) then
oddA := true;
fi;
od;
Expand All @@ -1073,7 +1073,7 @@ InstallMethod( AreDerivedEquivalent ,
od;

for pair in wnumberBasisA do
if IsOddInt(pair[1]) or IsOddInt[pair[2]] then
if IsOddInt( pair[1] ) or IsOddInt( pair[2] ) then
oddA := true;
fi;
od;
Expand Down

0 comments on commit 87aee76

Please sign in to comment.