@@ -6,7 +6,9 @@ ProbNumDiffEq.jl-specific implementation of OrdinaryDiffEqCore.jl's `postamble!`
66In addition to calling `OrdinaryDiffEqCore._postamble!(integ)`, calibrate the diffusion and
77smooth the solution.
88"""
9- function OrdinaryDiffEqCore. postamble! (integ:: OrdinaryDiffEqCore.ODEIntegrator{<:AbstractEK} )
9+ function OrdinaryDiffEqCore. postamble! (
10+ integ:: OrdinaryDiffEqCore.ODEIntegrator{<:AbstractEK} ,
11+ )
1012 # OrdinaryDiffEqCore.jl-related calls:
1113 OrdinaryDiffEqCore. _postamble! (integ)
1214 copyat_or_push! (integ. sol. k, integ. saveiter_dense, integ. k)
@@ -150,7 +152,11 @@ function DiffEqBase.savevalues!(
150152 # Save our custom stuff that we need for the posterior
151153 if integ. opts. save_everystep
152154 i = integ. saveiter
153- OrdinaryDiffEqCore. copyat_or_push! (integ. sol. diffusions, i, integ. cache. local_diffusion)
155+ OrdinaryDiffEqCore. copyat_or_push! (
156+ integ. sol. diffusions,
157+ i,
158+ integ. cache. local_diffusion,
159+ )
154160 OrdinaryDiffEqCore. copyat_or_push! (integ. sol. x_filt, i, integ. cache. x)
155161 _gaussian_mul! (integ. cache. pu_tmp, integ. cache. SolProj, integ. cache. x)
156162 OrdinaryDiffEqCore. copyat_or_push! (integ. sol. pu, i, integ. cache. pu_tmp)
@@ -164,7 +170,9 @@ function DiffEqBase.savevalues!(
164170 return out
165171end
166172
167- function OrdinaryDiffEqCore. update_uprev! (integ:: OrdinaryDiffEqCore.ODEIntegrator{<:AbstractEK} )
173+ function OrdinaryDiffEqCore. update_uprev! (
174+ integ:: OrdinaryDiffEqCore.ODEIntegrator{<:AbstractEK} ,
175+ )
168176 @assert ! OrdinaryDiffEqCore. alg_extrapolates (integ. alg)
169177 @assert isinplace (integ. sol. prob)
170178 @assert ! (integ. alg isa OrdinaryDiffEqCore. DAEAlgorithm)
0 commit comments