Skip to content

Commit

Permalink
Swap BrownFullBasicInit for CheckInit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ickaser committed Nov 13, 2024
1 parent 1a070a9 commit 17b35af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/OrdinaryDiffEqCore/src/initialize_dae.jl
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function _initialize_dae!(integrator, prob::ODEProblem,
OverrideInit(integrator.opts.abstol), x)
else
_initialize_dae!(integrator, prob,
BrownFullBasicInit(integrator.opts.abstol), x)
CheckInit(), x)
end
end

Expand All @@ -77,7 +77,7 @@ function _initialize_dae!(integrator, prob::ODEProblem,
OverrideInit(integrator.opts.abstol), x)
else
_initialize_dae!(integrator, prob,
BrownFullBasicInit(integrator.opts.abstol), x)
CheckInit(), x)
end
end

Expand All @@ -91,7 +91,7 @@ function _initialize_dae!(integrator, prob::DAEProblem,
ShampineCollocationInit(), x)
else
_initialize_dae!(integrator, prob,
BrownFullBasicInit(integrator.opts.abstol), x)
CheckInit(), x)
end
end

Expand All @@ -105,7 +105,7 @@ function _initialize_dae!(integrator, prob::DAEProblem,
ShampineCollocationInit(), x)
else
_initialize_dae!(integrator, prob,
BrownFullBasicInit(integrator.opts.abstol), x)
CheckInit(), x)
end
end

Expand Down

0 comments on commit 17b35af

Please sign in to comment.