Skip to content

Commit 65b7bcd

Browse files
Merge pull request #71 from SciML/abstract
Fix the abstract type hierarchy
2 parents e9ea427 + c8b02dd commit 65b7bcd

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolve"
22
uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
33
authors = ["Kanav Gupta <[email protected]>"]
4-
version = "0.3.18"
4+
version = "0.3.19"
55

66
[deps]
77
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"

src/NonlinearSolve.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@ import RecursiveFactorization
1414

1515
@reexport using SciMLBase
1616

17-
abstract type AbstractNonlinearProblem{uType,isinplace} end
18-
abstract type AbstractNonlinearSolveAlgorithm end
17+
abstract type AbstractNonlinearSolveAlgorithm <: SciMLBase.AbstractNonlinearAlgorithm end
1918
abstract type AbstractBracketingAlgorithm <: AbstractNonlinearSolveAlgorithm end
2019
abstract type AbstractNewtonAlgorithm{CS,AD} <: AbstractNonlinearSolveAlgorithm end
21-
abstract type AbstractNonlinearSolver end
22-
abstract type AbstractImmutableNonlinearSolver <: AbstractNonlinearSolver end
20+
abstract type AbstractImmutableNonlinearSolver <: AbstractNonlinearSolveAlgorithm end
2321

2422
include("utils.jl")
2523
include("jacobian.jl")

0 commit comments

Comments
 (0)