Skip to content

Commit

Permalink
Default to using fully_determined when possible in initialization
Browse files Browse the repository at this point in the history
This should give better error messages
  • Loading branch information
ChrisRackauckas committed Sep 6, 2024
1 parent f1b8e72 commit 4429fa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/systems/diffeqs/abstractodesystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ function process_DEProblem(constructor, sys::AbstractODESystem, u0map, parammap;
warn_initialize_determined = true,
build_initializeprob = true,
initialization_eqs = [],
fully_determined = false,
fully_determined = nothing,
check_units = true,
kwargs...)
eqs = equations(sys)
Expand Down Expand Up @@ -1380,7 +1380,7 @@ InitializationProblem{iip}(sys::AbstractODESystem, u0map, tspan,
simplify = false,
linenumbers = true, parallel = SerialForm(),
initialization_eqs = [],
fully_determined = false,
fully_determined = nothing,
kwargs...) where {iip}
```
Expand Down

0 comments on commit 4429fa1

Please sign in to comment.