While `libgap.SimpleGroup("J2")` yields the expected result,
`libgap.SimpleGroup("J3")` raises a `GAPError: Error, The AtlasRep package
could not load a group with parameters [ "J3" ]`. Calling
`libgap.LoadPackage("AtlasRep")` returns without errors, but the problem
persists.
The same happens
That's because by default Sage's installation of AtlasRep does not
fetch data from the internet: we patch
local/lib/gap/pkg/atlasrep/gap/userpref.g
so that it says
default:= false;
The reason is that our release manager runs build tests in an no internet mode,
and something breaks without this pat
Thanks, the following line resolves the issue in Sage 10.0.beta6 (but not
in 9.8, but I don't care):
`libgap.SetUserPreference("AtlasRep", "AtlasRepAccessRemoteFiles", true )`
Dima Pasechnik schrieb am Dienstag, 18. April 2023 um 12:50:49 UTC+2:
[...]
So you can either go and edit the file abov