@@ -4369,7 +4369,7 @@ cdef class _Lambdify(object):
4369
4369
cdef vector[int ] accum_out_sizes
4370
4370
cdef object numpy_dtype
4371
4371
4372
- def __init__ (self , args , *exprs , cppbool real = True , order = ' C' , cppbool cse = False , cppbool load = False ):
4372
+ def __init__ (self , args , *exprs , cppbool real = True , order = ' C' , cppbool cse = False , cppbool _load = False ):
4373
4373
cdef:
4374
4374
Basic e_
4375
4375
size_t ri, ci, nr, nc
@@ -4378,7 +4378,7 @@ cdef class _Lambdify(object):
4378
4378
symengine.vec_basic args_, outs_
4379
4379
vector[int ] out_sizes
4380
4380
4381
- if load :
4381
+ if _load :
4382
4382
self .args_size, self .tot_out_size, self .out_shapes, self .real, \
4383
4383
self .n_exprs, self .order, self .accum_out_sizes, self .numpy_dtype, \
4384
4384
llvm_function = args
@@ -4662,7 +4662,7 @@ IF HAVE_SYMENGINE_LLVM:
4662
4662
return create_low_level_callable(self , addr1, addr2)
4663
4663
4664
4664
def llvm_loading_func (*args ):
4665
- return LLVMDouble(args, load = True )
4665
+ return LLVMDouble(args, _load = True )
4666
4666
4667
4667
def Lambdify (args , *exprs , cppbool real = True , backend = None , order = ' C' , as_scipy = False , cse = False ):
4668
4668
"""
0 commit comments