Skip to content

Commit b9b0317

Browse files
committed
forgotten details
1 parent 064afd2 commit b9b0317

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/sage/tests/benchmark.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def avg(X):
5454
return s / float(len(X))
5555

5656

57-
STD_SYSTEMS = ['sage', 'maxima', 'gap', 'gp', 'pari', 'python']
57+
STD_SYSTEMS = ['sage', 'maxima', 'libgap', 'gp', 'pari', 'python']
5858
OPT_SYSTEMS = ['magma', 'macaulay2', 'maple', 'mathematica']
5959

6060

@@ -1023,7 +1023,7 @@ def libgap(self):
10231023
10241024
sage: from sage.tests.benchmark import SquareInts
10251025
sage: B = SquareInts()
1026-
sage: isinstance(B.gap()[1], float)
1026+
sage: isinstance(B.libgap()[1], float)
10271027
True
10281028
"""
10291029
n = libgap('%s^%s' % (self.base, self.__ndigits))
@@ -1115,7 +1115,7 @@ def libgap(self):
11151115
11161116
sage: from sage.tests.benchmark import MatrixSquare
11171117
sage: B = MatrixSquare(3, QQ)
1118-
sage: isinstance(B.gap()[1], float)
1118+
sage: isinstance(B.libgap()[1], float)
11191119
True
11201120
"""
11211121
n = self.__n
@@ -1238,7 +1238,7 @@ def libgap(self):
12381238
12391239
sage: from sage.tests.benchmark import Fibonacci
12401240
sage: B = Fibonacci(10)
1241-
sage: isinstance(B.gap()[1], float)
1241+
sage: isinstance(B.libgap()[1], float)
12421242
True
12431243
"""
12441244
n = libgap(self.__n)
@@ -1256,7 +1256,6 @@ def mathematica(self):
12561256
sage: B = Fibonacci(10)
12571257
sage: isinstance(B.mathematica()[1], float) # optional - mathematica
12581258
True
1259-
12601259
"""
12611260
n = mathematica(self.__n)
12621261
t = walltime()

0 commit comments

Comments
 (0)