Skip to content

Commit 8e2fdaf

Browse files
committed
fixed wrong variable name
1 parent 34b745c commit 8e2fdaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/discretization/MOL_discretization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function SciMLBase.symbolic_discretize(pdesys::PDESystem, discretization::Method
4848
allindvars = Set(filter(xs->!isequal(xs, [t]), map(arguments, depvars)))
4949
allnottime = Set(filter(!isempty, map(u->filter(x-> t === nothing || !isequal(x, t.val), arguments(u)), depvars)))
5050
if isempty(allnottime)
51-
push!(alleqs, eq)
51+
push!(alleqs, pde)
5252
push!(alldepvarsdisc, depvars)
5353
for bc in bcs
5454
if any(u->isequal(bc.lhs, operation(u)(tspan[1])), depvars)

0 commit comments

Comments
 (0)