Skip to content

Commit e268db2

Browse files
committed
Merge branch 'master' into speed-up-reaction-jump-sys
2 parents 1dabd75 + f792b15 commit e268db2

25 files changed

+650
-321
lines changed

Project.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ModelingToolkit"
22
uuid = "961ee093-0014-501f-94e3-6117800e7a78"
33
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com>"]
4-
version = "3.10.2"
4+
version = "3.11.1"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
@@ -18,6 +18,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1818
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
1919
NaNMath = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3"
2020
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
21+
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
2122
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
2223
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2324
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
@@ -40,20 +41,22 @@ LightGraphs = "1.3"
4041
MacroTools = "0.5"
4142
NaNMath = "0.3"
4243
RecursiveArrayTools = "2.3"
44+
Requires = "1.0"
4345
SafeTestsets = "0.0.1"
4446
SpecialFunctions = "0.7, 0.8, 0.9, 0.10"
4547
StaticArrays = "0.10, 0.11, 0.12"
46-
SymbolicUtils = "0.3.3, 0.4"
48+
SymbolicUtils = "0.4.1"
4749
TreeViews = "0.3"
4850
UnPack = "0.1, 1.0"
4951
Unitful = "1.1"
5052
julia = "1.2"
5153

5254
[extras]
55+
Dagger = "d58978e5-989f-55fb-8d15-ea34adc7bf54"
5356
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
5457
SteadyStateDiffEq = "9672c7b4-1e72-59bd-8a11-6ac3964bc41f"
5558
StochasticDiffEq = "789caeaf-c7a9-5a7d-9973-96adeb23e2a0"
5659
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
5760

5861
[targets]
59-
test = ["OrdinaryDiffEq", "SteadyStateDiffEq", "Test", "StochasticDiffEq"]
62+
test = ["Dagger", "OrdinaryDiffEq", "SteadyStateDiffEq", "Test", "StochasticDiffEq"]

docs/make.jl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ makedocs(
1010
canonical="https://mtk.sciml.ai/stable/"),
1111
pages=[
1212
"Home" => "index.md",
13-
"highlevel.md",
13+
"Tutorials" => Any[
14+
"tutorials/ode_modeling.md",
15+
"tutorials/higher_order.md",
16+
"tutorials/nonlinear.md",
17+
"tutorials/modelingtoolkitize.md",
18+
"tutorials/auto_parallel.md"
19+
],
1420
"Systems" => Any[
1521
"systems/AbstractSystem.md",
1622
"systems/ODESystem.md",
@@ -22,6 +28,7 @@ makedocs(
2228
"systems/PDESystem.md",
2329
"systems/DependencyGraphs.md"
2430
],
31+
"highlevel.md",
2532
"IR.md"
2633
]
2734
)

0 commit comments

Comments
 (0)