Skip to content

Commit bbd7807

Browse files
committed
re-add maxima algo for Stirling
1 parent 42d5b69 commit bbd7807

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

src/sage/combinat/combinat.py

+14-13
Original file line numberDiff line numberDiff line change
@@ -364,9 +364,9 @@ def bell_number(n, algorithm='flint', **options) -> Integer:
364364
365365
TESTS::
366366
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))
368368
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))
370370
True
371371
sage: all(bell_number(n) == bell_number(n,'mpmath', prec=500) for n in range(200, 220))
372372
True
@@ -854,7 +854,7 @@ def lucas_number2(n, P, Q):
854854
return libgap.Lucas(P, Q, n)[1].sage()
855855

856856

857-
def stirling_number1(n, k, algorithm=None) -> Integer:
857+
def stirling_number1(n, k, algorithm="gap") -> Integer:
858858
r"""
859859
Return the `n`-th Stirling number `S_1(n,k)` of the first kind.
860860
@@ -868,8 +868,8 @@ def stirling_number1(n, k, algorithm=None) -> Integer:
868868
- ``k`` -- nonnegative machine-size integer
869869
- ``algorithm``:
870870
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
873873
874874
EXAMPLES::
875875
@@ -896,8 +896,6 @@ def stirling_number1(n, k, algorithm=None) -> Integer:
896896
"""
897897
n = ZZ(n)
898898
k = ZZ(k)
899-
if algorithm is None:
900-
algorithm = 'gap'
901899
if algorithm == 'gap':
902900
from sage.libs.gap.libgap import libgap
903901
return libgap.Stirling1(n, k).sage()
@@ -924,8 +922,9 @@ def stirling_number2(n, k, algorithm=None) -> Integer:
924922
- ``algorithm``:
925923
926924
* ``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
929928
930929
EXAMPLES:
931930
@@ -1016,7 +1015,10 @@ def stirling_number2(n, k, algorithm=None) -> Integer:
10161015
....: if not (s_sage == s_flint and s_sage == s_gap):
10171016
....: print("Error with n<200")
10181017
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")
10201022
Traceback (most recent call last):
10211023
...
10221024
ValueError: unknown algorithm: namba
@@ -1031,6 +1033,8 @@ def stirling_number2(n, k, algorithm=None) -> Integer:
10311033
if algorithm == 'flint':
10321034
import sage.libs.flint.arith
10331035
return sage.libs.flint.arith.stirling_number_2(n, k)
1036+
if algorithm == 'maxima':
1037+
return ZZ(maxima.stirling2(n, k)) # type:ignore
10341038
raise ValueError("unknown algorithm: %s" % algorithm)
10351039

10361040

@@ -1423,8 +1427,6 @@ def __bool__(self) -> bool:
14231427
"""
14241428
return bool(self._list)
14251429

1426-
1427-
14281430
def __len__(self) -> Integer:
14291431
"""
14301432
EXAMPLES::
@@ -2461,7 +2463,6 @@ def __iter__(self):
24612463

24622464
##############################################################################
24632465
from sage.sets.image_set import ImageSubobject
2464-
from sage.categories.map import is_Map
24652466

24662467

24672468
class MapCombinatorialClass(ImageSubobject, CombinatorialClass):

0 commit comments

Comments
 (0)