We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c239e32 commit 24f105aCopy full SHA for 24f105a
symengine/lib/symengine_wrapper.pyx
@@ -1377,6 +1377,10 @@ cdef class Abs(Function):
1377
return abs(arg)
1378
1379
cdef class _Max(Function):
1380
+ '''
1381
+ Class named as such to prevent namespace issues with
1382
+ Python's min. Import as Min for aesthetics.
1383
1384
1385
def _sympy_(self):
1386
cdef RCP[const symengine.Max] X = \
@@ -1399,6 +1403,10 @@ cdef class _Max(Function):
1399
1403
return sage.max(*s)
1400
1404
1401
1405
cdef class _Min(Function):
1406
1407
1408
1409
1402
1410
1411
1412
cdef RCP[const symengine.Min] X = \
0 commit comments