Skip to content

Commit ef5e7a0

Browse files
refactor: remove use_homotopy_continuation keyword from NonlinearProblem
1 parent 56b7435 commit ef5e7a0

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
@@ -512,17 +512,10 @@ end
512512

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

0 commit comments

Comments
 (0)