Skip to content

Commit

Permalink
Handle the case of on group being finite and the other inifite explic…
Browse files Browse the repository at this point in the history
…itly
  • Loading branch information
zickgraf committed Mar 8, 2019
1 parent 4b06361 commit 4ed2f65
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/morpheus.gi
Original file line number Diff line number Diff line change
Expand Up @@ -2154,6 +2154,9 @@ local m;
if not IsFinite(G) and not IsFinite(H) then
Error("cannot test isomorphism of infinite groups");
fi;
if IsFinite(G) <> IsFinite(H) then
return fail;
fi;

#AH: Spezielle Methoden ?
if Size(G)=1 then
Expand Down

0 comments on commit 4ed2f65

Please sign in to comment.