Skip to content

Commit ff9c85a

Browse files
fixup! feat: use SCCNonlinearProblem for initialization
1 parent 4d88639 commit ff9c85a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/systems/diffeqs/abstractodesystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1301,7 +1301,7 @@ function InitializationProblem{iip, specialize}(sys::AbstractODESystem,
13011301
initialization_eqs = [],
13021302
fully_determined = nothing,
13031303
check_units = true,
1304-
use_scc = true,
1304+
use_scc = false,
13051305
kwargs...) where {iip, specialize}
13061306
if !iscomplete(sys)
13071307
error("A completed system is required. Call `complete` or `structural_simplify` on the system before creating an `ODEProblem`")

src/systems/problem_utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ function process_SciMLProblem(
506506
symbolic_u0 = false, warn_cyclic_dependency = false,
507507
circular_dependency_max_cycle_length = length(all_symbols(sys)),
508508
circular_dependency_max_cycles = 10,
509-
substitution_limit = 100, use_scc = true, kwargs...)
509+
substitution_limit = 100, use_scc = false, kwargs...)
510510
dvs = unknowns(sys)
511511
ps = parameters(sys)
512512
iv = has_iv(sys) ? get_iv(sys) : nothing

0 commit comments

Comments
 (0)