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 ded8a6c commit 185a4c5Copy full SHA for 185a4c5
symengine/lib/symengine_wrapper.pyx
@@ -930,7 +930,7 @@ cdef class Basic(object):
930
if (len(f) != 1):
931
raise RuntimeError("Variable w.r.t should be given")
932
return self._diff(f.pop())
933
- return diff(self, *args)
+ return _diff(self, *args)
934
935
def subs_dict(Basic self not None, *args):
936
warnings.warn("subs_dict() is deprecated. Use subs() instead", DeprecationWarning)
@@ -3687,7 +3687,7 @@ cdef class DenseMatrixBase(MatrixBase):
3687
return R
3688
3689
def diff(self, *args):
3690
3691
3692
#TODO: implement this in C++
3693
def subs(self, *args):
0 commit comments