@@ -542,7 +542,7 @@ Create a Julia expression for an `ODEFunction` from the [`ODESystem`](@ref).
542542The arguments `dvs` and `ps` are used to set the order of the dependent
543543variable and parameter vectors, respectively.
544544"""
545- struct ODEFunctionExpr{iip,specialize} end
545+ struct ODEFunctionExpr{iip, specialize} end
546546
547547struct ODEFunctionClosure{O, I} <: Function
548548 f_oop:: O
551551(f:: ODEFunctionClosure )(u, p, t) = f. f_oop (u, p, t)
552552(f:: ODEFunctionClosure )(du, u, p, t) = f. f_iip (du, u, p, t)
553553
554- function ODEFunctionExpr {iip,specialize} (sys:: AbstractODESystem , dvs = unknowns (sys),
554+ function ODEFunctionExpr {iip, specialize} (sys:: AbstractODESystem , dvs = unknowns (sys),
555555 ps = parameters (sys), u0 = nothing ;
556556 version = nothing , tgrad = false ,
557557 jac = false , p = nothing ,
@@ -560,7 +560,7 @@ function ODEFunctionExpr{iip,specialize}(sys::AbstractODESystem, dvs = unknowns(
560560 steady_state = false ,
561561 sparsity = false ,
562562 observedfun_exp = nothing ,
563- kwargs... ) where {iip,specialize}
563+ kwargs... ) where {iip, specialize}
564564 if ! iscomplete (sys)
565565 error (" A completed system is required. Call `complete` or `structural_simplify` on the system before creating an `ODEFunctionExpr`" )
566566 end
@@ -601,7 +601,7 @@ function ODEFunctionExpr{iip,specialize}(sys::AbstractODESystem, dvs = unknowns(
601601 jp_expr = sparse ? :($ similar ($ (get_jac (sys)[]), Float64)) : :nothing
602602 ex = quote
603603 let $ _f, $ _tgrad, $ _jac, $ _M
604- ODEFunction {$iip,$specialize} ($ fsym,
604+ ODEFunction {$iip, $specialize} ($ fsym,
605605 sys = $ sys,
606606 jac = $ jacsym,
607607 tgrad = $ tgradsym,
0 commit comments