@@ -243,7 +243,8 @@ function isdelay(var, iv)
243243end
244244const DDE_HISTORY_FUN = Sym {Symbolics.FnType{Tuple{Any, <:Real}, Vector{Real}}} (:___history___ )
245245const DEFAULT_PARAMS_ARG = Sym {Any} (:ˍ₋arg3 )
246- function delay_to_function (sys:: AbstractODESystem , eqs = full_equations (sys); history_arg = DEFAULT_PARAMS_ARG)
246+ function delay_to_function (
247+ sys:: AbstractODESystem , eqs = full_equations (sys); history_arg = DEFAULT_PARAMS_ARG)
247248 delay_to_function (eqs,
248249 get_iv (sys),
249250 Dict {Any, Int} (operation (s) => i for (i, s) in enumerate (unknowns (sys))),
@@ -254,7 +255,8 @@ function delay_to_function(eqs::Vector, iv, sts, ps, h; history_arg = DEFAULT_PA
254255 delay_to_function .(eqs, (iv,), (sts,), (ps,), (h,); history_arg)
255256end
256257function delay_to_function (eq:: Equation , iv, sts, ps, h; history_arg = DEFAULT_PARAMS_ARG)
257- delay_to_function (eq. lhs, iv, sts, ps, h; history_arg) ~ delay_to_function (eq. rhs, iv, sts, ps, h; history_arg)
258+ delay_to_function (eq. lhs, iv, sts, ps, h; history_arg) ~ delay_to_function (
259+ eq. rhs, iv, sts, ps, h; history_arg)
258260end
259261function delay_to_function (expr, iv, sts, ps, h; history_arg = DEFAULT_PARAMS_ARG)
260262 if isdelay (expr, iv)
0 commit comments