We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36c353f commit 78d494fCopy full SHA for 78d494f
lib/BoundaryValueDiffEqFIRK/src/interpolation.jl
@@ -161,7 +161,7 @@ function (s::EvalSol{C})(tval::Number) where {C <: FIRKCacheExpand}
161
for jj in 1:stage
162
K[:, jj] = u[ctr_y + jj]
163
end
164
- h = mesh_dt(j)
+ h = mesh_dt[j]
165
τ = tval - t[j]
166
167
M = size(K, 1)
@@ -232,7 +232,7 @@ function (s::EvalSol{C})(tval::Number) where {C <: FIRKCacheNested}
232
(tval == t[1]) && return first(u)
233
(tval == t[end]) && return last(u)
234
j = interval(t, tval)
235
- h = t[j + 1] - t[j]
236
237
T = eltype(first(u))
238
0 commit comments