fixed issue
This commit is contained in:
parent
0927bb1178
commit
3efb7d13b8
1 changed files with 1 additions and 1 deletions
|
|
@ -496,7 +496,7 @@ class Equation:
|
||||||
equations = list(equations)
|
equations = list(equations)
|
||||||
|
|
||||||
J_template = np.empty((n, n), dtype=object)
|
J_template = np.empty((n, n), dtype=object)
|
||||||
F_template = np.array((n, n), dtype=object)
|
F_template = np.empty(n, dtype=object)
|
||||||
for i in range(n):
|
for i in range(n):
|
||||||
f = equations[i]
|
f = equations[i]
|
||||||
f.compile()
|
f.compile()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue