Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Reexport = "1.2.2"
SafeTestsets = "0.0.1, 0.1"
SciMLBase = "3.1"
SciMLLogging = "1.10.1, 2"
SciMLTesting = "1"
SciMLTesting = "2.1"
SymbolicIndexingInterface = "0.3"
Test = "1"
julia = "1.10"
Expand Down
6 changes: 6 additions & 0 deletions src/algorithms.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ODEInterface.jl Algorithms

"""
ODEInterfaceAlgorithm

Abstract supertype for ODEInterfaceDiffEq algorithms that wrap the Hairer and
ODEInterface solvers exposed through the SciML common solve interface.
"""
abstract type ODEInterfaceAlgorithm <: SciMLBase.AbstractODEAlgorithm end
abstract type ODEInterfaceImplicitAlgorithm <: ODEInterfaceAlgorithm end
abstract type ODEInterfaceExplicitAlgorithm <: ODEInterfaceAlgorithm end
Expand Down
2 changes: 1 addition & 1 deletion test/qa/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ ODEInterfaceDiffEq = { path = "../.." }
Aqua = "0.8"
JET = "0.9,0.10,0.11"
SafeTestsets = "0.0.1, 0.1"
SciMLTesting = "1.7"
SciMLTesting = "2.1"
Test = "1"
julia = "1.10"
Loading