Skip to content

Commit

Permalink
Fix typos in test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed Aug 3, 2021
1 parent 5a8b35e commit 0d58132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tst/test_functions.g
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ PermCentralizerTests := function(k)

g := Group(GeneratorsOfGroup(g));
t := NanosecondsSinceEpoch();
btkit := BTKit_SimpleSearch(ps, [ BTKit_Con.InGroup(g), BTKit_Con.PermCentralizer(d, e) ] );
btkit := BTKit_SimpleSearch(ps, [ BTKit_Con.InGroup(g), BTKit_Con.PermCentralizer(e) ] );
t := NanosecondsSinceEpoch() - t;
Info(InfoBTKitTest, 5, "BTKit: ", t / 1000000000., " size: ", Size(btkit));

Expand Down Expand Up @@ -102,7 +102,7 @@ CentralizerTest := function()

g := Group(GeneratorsOfGroup(g));

l := List(GeneratorsOfGroup(h), x -> BTKit_Con.PermCentralizer(d, x));
l := List(GeneratorsOfGroup(h), x -> BTKit_Con.PermCentralizer(x));
Add(l, BTKit_Con.InGroup(g));

t := NanosecondsSinceEpoch();
Expand Down

0 comments on commit 0d58132

Please sign in to comment.