Skip to content

Commit 108b87a

Browse files
refactor: remove MTKHomotopyContinuationExt
1 parent b790dfb commit 108b87a

File tree

3 files changed

+1
-236
lines changed

3 files changed

+1
-236
lines changed

Project.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ BifurcationKit = "0f109fa4-8a5d-4b75-95aa-f515264e7665"
6565
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
6666
DeepDiffs = "ab62b9b5-e342-54a8-a765-a90f495de1a6"
6767
FMI = "14a09403-18e3-468f-ad8a-74f8dda2d9ac"
68-
HomotopyContinuation = "f213a82b-91d6-5c5d-acf7-10f1c761b327"
6968
InfiniteOpt = "20393b10-9daf-11e9-18c9-8db751c92c57"
7069
LabelledArrays = "2ee39098-c373-598a-b85f-a56591580800"
7170

@@ -74,7 +73,6 @@ MTKBifurcationKitExt = "BifurcationKit"
7473
MTKChainRulesCoreExt = "ChainRulesCore"
7574
MTKDeepDiffsExt = "DeepDiffs"
7675
MTKFMIExt = "FMI"
77-
MTKHomotopyContinuationExt = "HomotopyContinuation"
7876
MTKInfiniteOptExt = "InfiniteOpt"
7977
MTKLabelledArraysExt = "LabelledArrays"
8078

@@ -110,7 +108,6 @@ FunctionWrappers = "1.1"
110108
FunctionWrappersWrappers = "0.1"
111109
FMI = "0.14"
112110
Graphs = "1.5.2"
113-
HomotopyContinuation = "2.11"
114111
InfiniteOpt = "0.5"
115112
InteractiveUtils = "1"
116113
JuliaFormatter = "1.0.47"

ext/MTKHomotopyContinuationExt.jl

Lines changed: 0 additions & 225 deletions
This file was deleted.

src/systems/nonlinear/nonlinearsystem.jl

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

528528
function DiffEqBase.NonlinearProblem{iip}(sys::NonlinearSystem, u0map,
529529
parammap = DiffEqBase.NullParameters();
530-
check_length = true, use_homotopy_continuation = false, kwargs...) where {iip}
530+
check_length = true, kwargs...) where {iip}
531531
if !iscomplete(sys)
532532
error("A completed `NonlinearSystem` is required. Call `complete` or `structural_simplify` on the system before creating a `NonlinearProblem`")
533533
end
534-
if use_homotopy_continuation
535-
prob = safe_HomotopyContinuationProblem(
536-
sys, u0map, parammap; check_length, kwargs...)
537-
if prob isa HomotopyContinuationProblem
538-
return prob
539-
end
540-
end
541534
f, u0, p = process_SciMLProblem(NonlinearFunction{iip}, sys, u0map, parammap;
542535
check_length, kwargs...)
543536
pt = something(get_metadata(sys), StandardNonlinearProblem())

0 commit comments

Comments
 (0)