You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/solutions/ode_solutions.jl
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -605,11 +605,14 @@ function sensitivity_solution(sol::ODESolution, u, t)
605
605
return@set sol.interp = interp
606
606
end
607
607
608
-
struct LazyInterpolationException <:Exception
608
+
struct LazyInterpolationException <:Exception
609
609
var::Symbol
610
610
end
611
611
612
-
Base.showerror(io::IO, e::LazyInterpolationException) =print(io, "The algorithm", e.var, " uses lazy interpolation, which is incompatible with `strip_solution`.")
612
+
function Base.showerror(io::IO, e::LazyInterpolationException)
613
+
print(io, "The algorithm", e.var,
614
+
" uses lazy interpolation, which is incompatible with `strip_solution`.")
0 commit comments