Skip to content

Commit

Permalink
Fix evaluation in picard_remainder!
Browse files Browse the repository at this point in the history
  • Loading branch information
lbenet committed May 6, 2021
1 parent 6c65147 commit ea70d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validatedODEs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function picard_remainder!(f!::Function, t::Taylor1{T},
f!(dxxI, xxI, params, t)

# Picard iteration, considering only the bound of `f` and the last coeff of f
Δdx = IntervalBox( evaluate.( (dxxI - dx)(δt), δI ) )
Δdx = IntervalBox( evaluate.( (dxxI - dx)(δt), (δI,) ) )
Δ = Δ0 + Δdx * δt
return Δ
end
Expand Down

0 comments on commit ea70d7d

Please sign in to comment.