You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That is, perhaps show some basic GAP code, then show how the "equivalent" Julia code would like.
E.g. today I was asked how to translate this GAP code (it uses the LINS package by Friedrich Robers -- for an example in the manual, it of course shouldn't use anything not shipped with GAP by default):
f := FreeGroup("a", "b");
g := f /[f.1^2, f.2^l, (f.1*f.2)^m];
a := g.1;
b := g.2;
gr := LowIndexNormalSubgroupsSearchForAll(g, N);
ns := ComputedNormalSubgroups(gr);
I proposed this translation:
f = GAP.Globals.FreeGroup(g"a", g"b")
g = f /GapObj([f.:1^2, f.:2^l, (f.:1*f.:2)^m])
a = g.:1
b = g.:2
gr = GAP.Globals.LowIndexNormalSubgroupsSearchForAll(g, N)
ns = GAP.Globals.ComputedNormalSubgroups(gr)
The text was updated successfully, but these errors were encountered:
That is, perhaps show some basic GAP code, then show how the "equivalent" Julia code would like.
E.g. today I was asked how to translate this GAP code (it uses the LINS package by Friedrich Robers -- for an example in the manual, it of course shouldn't use anything not shipped with GAP by default):
I proposed this translation:
The text was updated successfully, but these errors were encountered: