File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4560,15 +4560,15 @@ cdef class _Lambdify(object):
4560
4560
return result
4561
4561
4562
4562
4563
- cdef double _scipy_callback_lambda_real(int n, double * x, void * user_data):
4563
+ cdef double _scipy_callback_lambda_real(int n, double * x, void * user_data) nogil :
4564
4564
cdef symengine.LambdaRealDoubleVisitor* lamb = < symengine.LambdaRealDoubleVisitor * > user_data
4565
4565
cdef double result
4566
4566
deref(lamb).call(& result, x)
4567
4567
return result
4568
4568
4569
4569
4570
4570
IF HAVE_SYMENGINE_LLVM:
4571
- cdef double _scipy_callback_llvm_real(int n, double * x, void * user_data):
4571
+ cdef double _scipy_callback_llvm_real(int n, double * x, void * user_data) nogil :
4572
4572
cdef symengine.LLVMDoubleVisitor* lamb = < symengine.LLVMDoubleVisitor * > user_data
4573
4573
cdef double result
4574
4574
deref(lamb).call(& result, x)
You can’t perform that action at this time.
0 commit comments