-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix script to create workspace for gapL
In GAP 4.12. gap is always started without readline when standard input is not a terminal. Instead of redirecting input we now read a file.
- Loading branch information
1 parent
f9cafdd
commit b604859
Showing
2 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
# load here all packages you want to include in the standard workspace | ||
for nam in [ "atlasrep", "autpgrp", "browse", "cohomolo", "crisp", "cryst", | ||
"crystcat", "ctbllib", "datastructures", "edim", "factint", "format", | ||
"grape", "grpconst", "guava", "kbmag", "laguna", "quagroup", "zeromq", | ||
"standardff" ] | ||
do | ||
LoadPackage(nam); | ||
od; | ||
Unbind(nam); | ||
|
||
# load help book infos with a dummy help query | ||
??blablfdfhskhks | ||
|
||
# a small trick to make everything sensible available to the TAB completion | ||
function() local a; for a in NamesGVars() do if ISB_GVAR(a) then VAL_GVAR(a); fi;od;end(); | ||
|
||
# save the workspace | ||
SaveWorkspace("bin/wsgap4"); | ||
|
||
QUIT; | ||
|