Skip to content

Commit 48bb041

Browse files
committed
Change load->_load
1 parent 28247b9 commit 48bb041

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

symengine/lib/symengine_wrapper.pyx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4369,7 +4369,7 @@ cdef class _Lambdify(object):
43694369
cdef vector[int] accum_out_sizes
43704370
cdef object numpy_dtype
43714371

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):
43734373
cdef:
43744374
Basic e_
43754375
size_t ri, ci, nr, nc
@@ -4378,7 +4378,7 @@ cdef class _Lambdify(object):
43784378
symengine.vec_basic args_, outs_
43794379
vector[int] out_sizes
43804380

4381-
if load:
4381+
if _load:
43824382
self.args_size, self.tot_out_size, self.out_shapes, self.real, \
43834383
self.n_exprs, self.order, self.accum_out_sizes, self.numpy_dtype, \
43844384
llvm_function = args
@@ -4662,7 +4662,7 @@ IF HAVE_SYMENGINE_LLVM:
46624662
return create_low_level_callable(self, addr1, addr2)
46634663

46644664
def llvm_loading_func(*args):
4665-
return LLVMDouble(args, load=True)
4665+
return LLVMDouble(args, _load=True)
46664666

46674667
def Lambdify(args, *exprs, cppbool real=True, backend=None, order='C', as_scipy=False, cse=False):
46684668
"""

0 commit comments

Comments
 (0)