Skip to content

Commit 90540bb

Browse files
Merge pull request #827 from SciML/symbolics
Remove Symbolics.jl from MTK docs
2 parents bb4fb15 + 649d6a0 commit 90540bb

25 files changed

+766
-1232
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ p = [lorenz1.σ => 10.0,
9999

100100
tspan = (0.0,100.0)
101101
prob = ODEProblem(connected,u0,tspan,p)
102-
sol = solve(prob,Rodas5())
102+
sol = solve(prob,Rodas4())
103103

104104
using Plots; plot(sol,vars=(a,lorenz1.x,lorenz2.z))
105105
```

docs/make.jl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,19 @@ makedocs(
1111
pages=[
1212
"Home" => "index.md",
1313
"Tutorials" => Any[
14-
"tutorials/symbolic_functions.md",
1514
"tutorials/ode_modeling.md",
1615
"tutorials/higher_order.md",
1716
"tutorials/nonlinear.md",
1817
"tutorials/modelingtoolkitize.md",
19-
"tutorials/auto_parallel.md",
20-
"tutorials/converting_to_C.md"
2118
],
22-
"Systems" => Any[
23-
"systems/AbstractSystem.md",
19+
"Basics" => Any[
20+
"basics/AbstractSystem.md",
21+
"basics/ContextualVariables.md",
22+
"basics/Composition.md",
23+
"basics/Validation.md",
24+
"basics/DependencyGraphs.md"
25+
],
26+
"Systems Types" => Any[
2427
"systems/ODESystem.md",
2528
"systems/SDESystem.md",
2629
"systems/JumpSystem.md",
@@ -29,12 +32,9 @@ makedocs(
2932
"systems/ControlSystem.md",
3033
"systems/ReactionSystem.md",
3134
"systems/PDESystem.md",
32-
"systems/DependencyGraphs.md"
3335
],
34-
"Comparison Against SymPy" => "comparison.md",
35-
"highlevel.md",
36-
"build_function.md",
37-
"IR.md"
36+
"comparison.md",
37+
"internals.md",
3838
]
3939
)
4040

docs/src/IR.md

Lines changed: 0 additions & 143 deletions
This file was deleted.

0 commit comments

Comments
 (0)