Skip to content

Commit 4d6d2b4

Browse files
authored
Merge branch 'master' into mh/no-spurious-output
2 parents 7fea378 + 97e67fa commit 4d6d2b4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+6746
-6748
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
include:
3333
- gap-branch: master # add one test in 32bit mode -- nostly for packages with kernel extension
3434
ABI: 32
35+
- gap-branch: master
36+
runs-on: macos-latest
3537

3638
steps:
3739
- uses: actions/checkout@v2

.release

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
# This file is executed by the `release` script from
3+
# https://github.com/gap-system/ReleaseTools
4+
5+
rm -rf src/leon/autom4te.cache

PackageInfo.g

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -283,13 +283,6 @@ SetPackageInfo( rec(
283283
end,
284284

285285

286-
## Suggest here if the package should be *automatically loaded* when GAP is
287-
## started. This should usually be 'false'. Say 'true' only if your package
288-
## provides some improvements of the GAP library which are likely to enhance
289-
## the overall system performance for many users.
290-
291-
Autoload := false,
292-
293286
## *Optional*, but recommended: path relative to package root to a file which
294287
## contains as many tests of the package functionality as sensible.
295288
TestFile := "tst/guava.tst",

autogen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ autoheader
88
# WORKAROUND: invoke automake (even though we don't use it) to ensure
99
# that `install-sh` gets added; this works around a bug in older
1010
# versions of GNU autotools.
11-
automake --force-missing --add-missing --copy || :
11+
automake --force-missing --add-missing --copy >/dev/null 2>&1 || :
1212
autoconf

init.g

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@
66
#A Lea Ruscio
77
#A David Joyner
88
#A CJ, Tjhai
9-
#A Joe Fields
9+
#A Joe Fields
1010
##
1111

12-
ReadPackage("guava", "lib/util2.gd");
13-
ReadPackage("guava", "lib/codeword.gd");
14-
ReadPackage("guava", "lib/codegen.gd");
12+
ReadPackage("guava", "lib/util2.gd");
13+
ReadPackage("guava", "lib/codeword.gd");
14+
ReadPackage("guava", "lib/codegen.gd");
1515
ReadPackage("guava", "lib/matrices.gd");
16-
ReadPackage("guava", "lib/codeman.gd");
17-
ReadPackage("guava", "lib/nordrob.gd");
18-
ReadPackage("guava", "lib/util.gd");
19-
ReadPackage("guava", "lib/curves.gd");
20-
ReadPackage("guava", "lib/codeops.gd");
21-
ReadPackage("guava", "lib/bounds.gd");
22-
ReadPackage("guava", "lib/codefun.gd");
23-
ReadPackage("guava", "lib/decoders.gd");
16+
ReadPackage("guava", "lib/codeman.gd");
17+
ReadPackage("guava", "lib/nordrob.gd");
18+
ReadPackage("guava", "lib/util.gd");
19+
ReadPackage("guava", "lib/curves.gd");
20+
ReadPackage("guava", "lib/codeops.gd");
21+
ReadPackage("guava", "lib/bounds.gd");
22+
ReadPackage("guava", "lib/codefun.gd");
23+
ReadPackage("guava", "lib/decoders.gd");
2424
ReadPackage("guava", "lib/codecr.gd");
2525
ReadPackage("guava", "lib/codecstr.gd");
2626
ReadPackage("guava", "lib/codemisc.gd");
2727
ReadPackage("guava", "lib/codenorm.gd");
28-
ReadPackage("guava", "lib/tblgener.gd");
29-
ReadPackage("guava", "lib/toric.gd");
28+
ReadPackage("guava", "lib/tblgener.gd");
29+
ReadPackage("guava", "lib/toric.gd");

lib/bounds.gd

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,51 +14,51 @@
1414
#F LowerBoundGilbertVarshamov( <n>, <d>, <q> ) . . .Gilbert-Varshamov bound
1515
##
1616
## added 9-2004 by wdj
17-
DeclareOperation("LowerBoundGilbertVarshamov", [IsInt, IsInt, IsInt]);
17+
DeclareOperation("LowerBoundGilbertVarshamov", [IsInt, IsInt, IsInt]);
1818

1919
#############################################################################
2020
##
2121
#F LowerBoundSpherePacking( <n>, <r>, <q> ) . . . sphere packing lower bound
2222
## for unrestricted codes
2323
##
2424
## added 11-2004 by wdj
25-
DeclareOperation("LowerBoundSpherePacking", [IsInt, IsInt, IsInt]);
25+
DeclareOperation("LowerBoundSpherePacking", [IsInt, IsInt, IsInt]);
2626

2727
#############################################################################
2828
##
2929
#F UpperBoundHamming( <n>, <d>, <q> ) . . . . . . . . . . . . Hamming bound
3030
##
31-
DeclareOperation("UpperBoundHamming", [IsInt, IsInt, IsInt]);
31+
DeclareOperation("UpperBoundHamming", [IsInt, IsInt, IsInt]);
3232

3333
#############################################################################
3434
##
3535
#F UpperBoundSingleton( <n>, <d>, <q> ) . . . . . . . . . . Singleton bound
3636
##
37-
DeclareOperation("UpperBoundSingleton", [IsInt, IsInt, IsInt]);
37+
DeclareOperation("UpperBoundSingleton", [IsInt, IsInt, IsInt]);
3838

3939
#############################################################################
4040
##
4141
#F UpperBoundPlotkin( <n>, <d>, <q> ) . . . . . . . . . . . . Plotkin bound
4242
##
43-
DeclareOperation("UpperBoundPlotkin", [IsInt, IsInt, IsInt]);
43+
DeclareOperation("UpperBoundPlotkin", [IsInt, IsInt, IsInt]);
4444

4545
#############################################################################
4646
##
4747
#F UpperBoundGriesmer( <n>, <d>, <q> ) . . . . . . . . . . . Griesmer bound
4848
##
49-
DeclareOperation("UpperBoundGriesmer", [IsInt, IsInt, IsInt]);
49+
DeclareOperation("UpperBoundGriesmer", [IsInt, IsInt, IsInt]);
5050

5151
#############################################################################
5252
##
5353
#F UpperBoundElias( <n>, <d>, <q> ) . . . . . . . . . . . . . . Elias bound
5454
##
55-
DeclareOperation("UpperBoundElias", [IsInt, IsInt, IsInt]);
55+
DeclareOperation("UpperBoundElias", [IsInt, IsInt, IsInt]);
5656

5757
#############################################################################
5858
##
5959
#F UpperBoundJohnson( <n>, <d> ) . . . . . . . . . . Johnson bound for <q>=2
6060
##
61-
DeclareOperation("UpperBoundJohnson", [IsInt, IsInt]);
61+
DeclareOperation("UpperBoundJohnson", [IsInt, IsInt]);
6262

6363
#############################################################################
6464
##
@@ -68,19 +68,19 @@ DeclareOperation("UpperBoundJohnson", [IsInt, IsInt]);
6868
## least d over an alphabet Q of size q, using the minimum of the Hamming,
6969
## Plotkin and Singleton bound.
7070
##
71-
DeclareOperation("UpperBound", [IsInt, IsInt, IsInt]);
71+
DeclareOperation("UpperBound", [IsInt, IsInt, IsInt]);
7272

7373
#############################################################################
7474
##
7575
#F IsPerfectCode( <C> ) . . . . . . determines whether C is a perfect code
7676
##
77-
DeclareProperty("IsPerfectCode", IsCode);
77+
DeclareProperty("IsPerfectCode", IsCode);
7878

7979
#############################################################################
8080
##
8181
#F IsMDSCode( <C> ) . . . checks if C is a Maximum Distance Separable Code
8282
##
83-
DeclareProperty("IsMDSCode", IsCode);
83+
DeclareProperty("IsMDSCode", IsCode);
8484

8585
#############################################################################
8686
##
@@ -91,7 +91,7 @@ DeclareProperty("IsMDSCode", IsCode);
9191
## function UpperBound is not allways equal to the actual upperbound A(n,d)
9292
## thus the result may not be equal to 0 for all optimal codes!
9393
##
94-
DeclareOperation("OptimalityCode", [IsCode]);
94+
DeclareOperation("OptimalityCode", [IsCode]);
9595

9696
#############################################################################
9797
##
@@ -100,13 +100,13 @@ DeclareOperation("OptimalityCode", [IsCode]);
100100
## OptimalityLinearCode(C) returns the difference between the smallest known
101101
## upperbound on the size of a linear code and the actual size.
102102
##
103-
DeclareOperation("OptimalityLinearCode", [IsCode]);
103+
DeclareOperation("OptimalityLinearCode", [IsCode]);
104104

105105
#############################################################################
106106
##
107107
#F BoundsMinimumDistance( <n>, <k>, <F> ) . . gets data from bounds tables
108108
##
109109
## LowerBoundMinimumDistance uses (n, k, q, true)
110-
## LowerBoundMinimumDistance uses (n, k, q, false)
111-
DeclareGlobalFunction("BoundsMinimumDistance");
110+
## LowerBoundMinimumDistance uses (n, k, q, false)
111+
DeclareGlobalFunction("BoundsMinimumDistance");
112112

0 commit comments

Comments
 (0)