Skip to content

Commit

Permalink
Change primgrp, smallgrp, transgrp from required to default
Browse files Browse the repository at this point in the history
This way, at least in principle one can load GAP without them.
  • Loading branch information
fingolfin committed Sep 2, 2018
1 parent c0c3307 commit c910ee4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
21 changes: 18 additions & 3 deletions lib/package.gi
Original file line number Diff line number Diff line change
Expand Up @@ -1745,9 +1745,24 @@ DeclareUserPreference( rec(
For backwards compatibility, the default lists most of packages \
that were autoloaded in GAP 4.4 (add or remove packages as you like)."
],
default:= [ "autpgrp", "alnuth", "crisp", "ctbllib", "factint", "fga",
"irredsol", "laguna", "polenta", "polycyclic", "resclasses",
"sophus", "tomlib" ],
default:= [
"autpgrp",
"alnuth",
"crisp",
"ctbllib",
"factint",
"fga",
"irredsol",
"laguna",
"polenta",
"polycyclic",
"primgrp",
"resclasses",
"smallgrp",
"sophus",
"tomlib",
"transgrp",
],
values:= function() return RecNames( GAPInfo.PackagesInfo ); end,
multi:= true,
) );
Expand Down
3 changes: 0 additions & 3 deletions lib/system.g
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ BIND_GLOBAL( "GAPInfo", rec(
Dependencies := MakeImmutable(rec(
NeededOtherPackages := [
[ "gapdoc", ">= 1.2" ],
[ "primgrp", ">= 3.1.0" ],
[ "smallgrp", ">= 1.0" ],
[ "transgrp", ">= 1.0" ],
],
)),
# There is no SuggestedOtherPackages here because the default value of
Expand Down

0 comments on commit c910ee4

Please sign in to comment.