@@ -364,9 +364,9 @@ def bell_number(n, algorithm='flint', **options) -> Integer:
364
364
365
365
TESTS::
366
366
367
- sage: all(bell_number(n) == bell_number(n,'dobinski') for n in range(200 ))
367
+ sage: all(bell_number(n) == bell_number(n,'dobinski') for n in range(100 ))
368
368
True
369
- sage: all(bell_number(n) == bell_number(n,'gap') for n in range(200 ))
369
+ sage: all(bell_number(n) == bell_number(n,'gap') for n in range(100 ))
370
370
True
371
371
sage: all(bell_number(n) == bell_number(n,'mpmath', prec=500) for n in range(200, 220))
372
372
True
@@ -854,7 +854,7 @@ def lucas_number2(n, P, Q):
854
854
return libgap .Lucas (P , Q , n )[1 ].sage ()
855
855
856
856
857
- def stirling_number1 (n , k , algorithm = None ) -> Integer :
857
+ def stirling_number1 (n , k , algorithm = "gap" ) -> Integer :
858
858
r"""
859
859
Return the `n`-th Stirling number `S_1(n,k)` of the first kind.
860
860
@@ -868,8 +868,8 @@ def stirling_number1(n, k, algorithm=None) -> Integer:
868
868
- ``k`` -- nonnegative machine-size integer
869
869
- ``algorithm``:
870
870
871
- * ``"gap"`` (default) -- use GAP's Stirling1 function
872
- * ``"flint"`` -- use flint's arith_stirling_number_1u function
871
+ * ``"gap"`` (default) -- use GAP's `` Stirling1`` function
872
+ * ``"flint"`` -- use flint's `` arith_stirling_number_1u`` function
873
873
874
874
EXAMPLES::
875
875
@@ -896,8 +896,6 @@ def stirling_number1(n, k, algorithm=None) -> Integer:
896
896
"""
897
897
n = ZZ (n )
898
898
k = ZZ (k )
899
- if algorithm is None :
900
- algorithm = 'gap'
901
899
if algorithm == 'gap' :
902
900
from sage .libs .gap .libgap import libgap
903
901
return libgap .Stirling1 (n , k ).sage ()
@@ -924,8 +922,9 @@ def stirling_number2(n, k, algorithm=None) -> Integer:
924
922
- ``algorithm``:
925
923
926
924
* ``None`` (default) -- use native implementation
927
- * ``"flint"`` -- use flint's arith_stirling_number_2 function
928
- * ``"gap"`` -- use GAP's Stirling2 function
925
+ * ``"flint"`` -- use flint's ``arith_stirling_number_2`` function
926
+ * ``"gap"`` -- use GAP's ``Stirling2`` function
927
+ * ``"maxima"`` -- use Maxima's ``stirling2`` function
929
928
930
929
EXAMPLES:
931
930
@@ -1016,7 +1015,10 @@ def stirling_number2(n, k, algorithm=None) -> Integer:
1016
1015
....: if not (s_sage == s_flint and s_sage == s_gap):
1017
1016
....: print("Error with n<200")
1018
1017
1019
- sage: s_sage = stirling_number2(50,3, algorithm="namba")
1018
+ sage: stirling_number2(20,3, algorithm="maxima")
1019
+ 580606446
1020
+
1021
+ sage: s_sage = stirling_number2(5,3, algorithm="namba")
1020
1022
Traceback (most recent call last):
1021
1023
...
1022
1024
ValueError: unknown algorithm: namba
@@ -1031,6 +1033,8 @@ def stirling_number2(n, k, algorithm=None) -> Integer:
1031
1033
if algorithm == 'flint' :
1032
1034
import sage .libs .flint .arith
1033
1035
return sage .libs .flint .arith .stirling_number_2 (n , k )
1036
+ if algorithm == 'maxima' :
1037
+ return ZZ (maxima .stirling2 (n , k )) # type:ignore
1034
1038
raise ValueError ("unknown algorithm: %s" % algorithm )
1035
1039
1036
1040
@@ -1423,8 +1427,6 @@ def __bool__(self) -> bool:
1423
1427
"""
1424
1428
return bool (self ._list )
1425
1429
1426
-
1427
-
1428
1430
def __len__ (self ) -> Integer :
1429
1431
"""
1430
1432
EXAMPLES::
@@ -2461,7 +2463,6 @@ def __iter__(self):
2461
2463
2462
2464
##############################################################################
2463
2465
from sage .sets .image_set import ImageSubobject
2464
- from sage .categories .map import is_Map
2465
2466
2466
2467
2467
2468
class MapCombinatorialClass (ImageSubobject , CombinatorialClass ):
0 commit comments