Skip to content

Commit

Permalink
Merge pull request #71 from SciML/abstract
Browse files Browse the repository at this point in the history
Fix the abstract type hierarchy
  • Loading branch information
ChrisRackauckas authored May 27, 2022
2 parents e9ea427 + c8b02dd commit 65b7bcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "NonlinearSolve"
uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
authors = ["Kanav Gupta <[email protected]>"]
version = "0.3.18"
version = "0.3.19"

[deps]
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"
Expand Down
6 changes: 2 additions & 4 deletions src/NonlinearSolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ import RecursiveFactorization

@reexport using SciMLBase

abstract type AbstractNonlinearProblem{uType,isinplace} end
abstract type AbstractNonlinearSolveAlgorithm end
abstract type AbstractNonlinearSolveAlgorithm <: SciMLBase.AbstractNonlinearAlgorithm end
abstract type AbstractBracketingAlgorithm <: AbstractNonlinearSolveAlgorithm end
abstract type AbstractNewtonAlgorithm{CS,AD} <: AbstractNonlinearSolveAlgorithm end
abstract type AbstractNonlinearSolver end
abstract type AbstractImmutableNonlinearSolver <: AbstractNonlinearSolver end
abstract type AbstractImmutableNonlinearSolver <: AbstractNonlinearSolveAlgorithm end

include("utils.jl")
include("jacobian.jl")
Expand Down

0 comments on commit 65b7bcd

Please sign in to comment.