Standardize on RAQ as the name of this package

This commit is contained in:
Glen Whitney 2018-08-18 10:58:08 -07:00
parent be82518697
commit ffb88b99e8
8 changed files with 82 additions and 80 deletions

View file

@ -1,7 +1,7 @@
# bytableAndStructure.tst raq
# bytableAndStructure.tst RAQ
# Test the functions in the bytable and structure files
gap> START_TEST("raq package: bytableAndStructure.tst");
gap> START_TEST("RAQ package: bytableAndStructure.tst");
gap> t4 := [[1,3,2,4], [3,2,1,4], [2,1,3,4], [1,2,3,4]];
[ [ 1, 3, 2, 4 ], [ 3, 2, 1, 4 ], [ 2, 1, 3, 4 ], [ 1, 2, 3, 4 ] ]
gap> IsRightSelfDistributiveTable(t4);

View file

@ -1,8 +1,8 @@
# tst/testall.g raq
# tst/testall.g RAQ
LoadPackage( "raq" );
LoadPackage( "RAQ" );
TestDirectory(DirectoriesPackageLibrary("raq","tst"),
TestDirectory(DirectoriesPackageLibrary("RAQ","tst"),
rec(exitGAP := true,
testOptions := rec(compareFunction := "uptowhitespace"))
);