Skip to content

Commit f7cc290

Browse files
simplify OrdianryDiffEq docs
1 parent 04e419d commit f7cc290

File tree

3 files changed

+10
-64
lines changed

3 files changed

+10
-64
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "OrdinaryDiffEq"
22
uuid = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
33
authors = ["Chris Rackauckas <[email protected]>", "Yingbo Ma <[email protected]>"]
4-
version = "6.100.0"
4+
version = "6.101.0"
55

66
[sources]
77
OrdinaryDiffEqAdamsBashforthMoulton = {path = "lib/OrdinaryDiffEqAdamsBashforthMoulton"}

docs/src/index.md

Lines changed: 5 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# OrdinaryDiffEq.jl
22

3-
OrdinaryDiffEq.jl is a component package in the DifferentialEquations ecosystem. It holds the
4-
ordinary differential equation solvers and utilities. While completely independent
5-
and usable on its own, users interested in using this
6-
functionality should check out [DifferentialEquations.jl](https://github.com/SciML/DifferentialEquations.jl).
3+
OrdinaryDiffEq.jl is a component package in the DifferentialEquations ecosystem.
4+
It holds the core ordinary differential equation solvers and utilities. While completely independent and usable on its own, users interested in using this
5+
functionality should check out
6+
[DifferentialEquations.jl](https://github.com/SciML/DifferentialEquations.jl).
77

88
## Installation
99

@@ -13,62 +13,4 @@ OrdinaryDiffEq.jl in the standard way:
1313
```julia
1414
import Pkg;
1515
Pkg.add("OrdinaryDiffEq");
16-
```
17-
18-
## Reproducibility
19-
20-
```@raw html
21-
<details><summary>The documentation of this SciML package was built using these direct dependencies,</summary>
22-
```
23-
24-
```@example
25-
using Pkg # hide
26-
Pkg.status() # hide
27-
```
28-
29-
```@raw html
30-
</details>
31-
```
32-
33-
```@raw html
34-
<details><summary>and using this machine and Julia version.</summary>
35-
```
36-
37-
```@example
38-
using InteractiveUtils # hide
39-
versioninfo() # hide
40-
```
41-
42-
```@raw html
43-
</details>
44-
```
45-
46-
```@raw html
47-
<details><summary>A more complete overview of all dependencies and their versions is also provided.</summary>
48-
```
49-
50-
```@example
51-
using Pkg # hide
52-
Pkg.status(; mode = PKGMODE_MANIFEST) # hide
53-
```
54-
55-
```@raw html
56-
</details>
57-
```
58-
59-
```@eval
60-
using TOML
61-
using Markdown
62-
version = TOML.parse(read("../../Project.toml", String))["version"]
63-
name = TOML.parse(read("../../Project.toml", String))["name"]
64-
link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
65-
"/assets/Manifest.toml"
66-
link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
67-
"/assets/Project.toml"
68-
Markdown.parse("""You can also download the
69-
[manifest]($link_manifest)
70-
file and the
71-
[project]($link_project)
72-
file.
73-
""")
74-
```
16+
```

docs/src/misc.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Miscellaneous Solvers
2+
3+
These are solvers that do not fall clearly into any of the major categories.
4+
15
```@docs
26
SplitEuler
37
CompositeAlgorithm

0 commit comments

Comments
 (0)