Skip to content

Commit ceecac6

Browse files
Merge pull request #1866 from ArnoStrouwen/docstrings
explicit RK docstrings
2 parents cc46ec8 + 0ab7a08 commit ceecac6

17 files changed

+2496
-3203
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ Manifest.toml
88
profile.pb.gz
99
.*.swp
1010
LocalPreferences.toml
11+
12+
docs/build

docs/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
34

45
[compat]
56
Documenter = "0.27"

src/OrdinaryDiffEq.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,10 @@ import Preferences
126126
DEFAULT_PRECS(W, du, u, p, t, newW, Plprev, Prprev, solverdata) = nothing, nothing
127127

128128
include("misc_utils.jl")
129+
129130
include("algorithms.jl")
131+
include("algorithms/explicit_rk.jl")
132+
130133
include("alg_utils.jl")
131134

132135
include("nlsolve/type.jl")

src/alg_utils.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,7 @@ Return the SSP coefficient of the ODE algorithm `alg`. If one time step of size
921921
with step sizes `cᵢ * dt`, the SSP coefficient is the minimal value of `1/cᵢ`.
922922
923923
# Examples
924+
924925
```julia-repl
925926
julia> ssp_coefficient(SSPRK104())
926927
6

src/algorithms.jl

Lines changed: 1809 additions & 3127 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)