Skip to content

Commit 71fd070

Browse files
refactor: remove use_homotopy_continuation keyword from NonlinearProblem
1 parent 249ac0e commit 71fd070

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/systems/nonlinear/nonlinearsystem.jl

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -513,17 +513,10 @@ end
513513

514514
function DiffEqBase.NonlinearProblem{iip}(sys::NonlinearSystem, u0map,
515515
parammap = DiffEqBase.NullParameters();
516-
check_length = true, use_homotopy_continuation = false, kwargs...) where {iip}
516+
check_length = true, kwargs...) where {iip}
517517
if !iscomplete(sys)
518518
error("A completed `NonlinearSystem` is required. Call `complete` or `structural_simplify` on the system before creating a `NonlinearProblem`")
519519
end
520-
if use_homotopy_continuation
521-
prob = safe_HomotopyContinuationProblem(
522-
sys, u0map, parammap; check_length, kwargs...)
523-
if prob isa HomotopyContinuationProblem
524-
return prob
525-
end
526-
end
527520
f, u0, p = process_SciMLProblem(NonlinearFunction{iip}, sys, u0map, parammap;
528521
check_length, kwargs...)
529522
pt = something(get_metadata(sys), StandardNonlinearProblem())

0 commit comments

Comments
 (0)