-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
completed restructuring and code refactor
- Loading branch information
1 parent
b3319b5
commit 9c2d373
Showing
8 changed files
with
89 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
module DormandPrince | ||
using Base.Iterators:repeated, Repeated | ||
|
||
include("types.jl") | ||
include("solver.jl") | ||
include("integrate.jl") | ||
include("checks.jl") | ||
include("helpers.jl") | ||
|
||
# internal imports | ||
include("dp5_core/mod.jl") | ||
include("interface.jl") | ||
|
||
# export Interface | ||
export DP5Solver, integrate | ||
|
||
|
||
end # DormandPrince |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module DP5Core | ||
|
||
# external imports | ||
using Base.Iterators:repeated, Repeated | ||
|
||
include("types.jl") | ||
include("helpers.jl") | ||
include("checks.jl") | ||
include("solver.jl") | ||
|
||
export DP5Solver, dopri5 | ||
|
||
|
||
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