Skip to content

Commit

Permalink
Replace calls to some obsolete GAP functions
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Feb 25, 2016
1 parent c7908cb commit dbb01e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ installation tree.
bash> tar xjf qaos.tar.bz2 # for the gzipped tar-archive
bash> gap4
[... startup messages ...]
gap> RequirePackage("qaos");
gap> LoadPackage("qaos");
true
gap>

Expand Down
8 changes: 2 additions & 6 deletions init.g
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,12 @@
#W init.g QaoS - Interfacing the QaoS database from GAP Sebastian Freundt
##

DeclarePackage("qaos", "1.0", function() return true; end);
DeclarePackageDocumentation("qaos", "doc");


#############################################################################
##
#R read .gd files
##
ReadPkg("qaos/gap/helper.gd");
ReadPkg("qaos/gap/qaos.gd");
ReadPackage("qaos/gap/helper.gd");
ReadPackage("qaos/gap/qaos.gd");


### init.g ends here
4 changes: 2 additions & 2 deletions read.g
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ fi;
##
#R read files
##
ReadPkg("qaos/gap/helper.gi");
ReadPkg("qaos/gap/qaos.gi");
ReadPackage("qaos/gap/helper.gi");
ReadPackage("qaos/gap/qaos.gi");

0 comments on commit dbb01e7

Please sign in to comment.