-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6dd6716
commit bf3a43e
Showing
10 changed files
with
39 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# ODEInterface.jl Algorithms | ||
|
||
@compat abstract type ODEInterfaceAlgorithm <: DiffEqBase.AbstractODEAlgorithm end | ||
immutable dopri5 <: ODEInterfaceAlgorithm end | ||
immutable dop853 <: ODEInterfaceAlgorithm end | ||
immutable odex <: ODEInterfaceAlgorithm end | ||
immutable seulex <: ODEInterfaceAlgorithm end | ||
immutable radau <: ODEInterfaceAlgorithm end | ||
immutable radau5 <: ODEInterfaceAlgorithm end | ||
immutable rodas <: ODEInterfaceAlgorithm end | ||
immutable ddeabm <: ODEInterfaceAlgorithm end | ||
immutable ddebdf <: ODEInterfaceAlgorithm end | ||
struct dopri5 <: ODEInterfaceAlgorithm end | ||
struct dop853 <: ODEInterfaceAlgorithm end | ||
struct odex <: ODEInterfaceAlgorithm end | ||
struct seulex <: ODEInterfaceAlgorithm end | ||
struct radau <: ODEInterfaceAlgorithm end | ||
struct radau5 <: ODEInterfaceAlgorithm end | ||
struct rodas <: ODEInterfaceAlgorithm end | ||
struct ddeabm <: ODEInterfaceAlgorithm end | ||
struct ddebdf <: ODEInterfaceAlgorithm end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
using ODEInterfaceDiffEq, DiffEqProblemLibrary, DiffEqBase | ||
using Base.Test | ||
using Test | ||
|
||
jac_called = false | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters