Skip to content

Commit

Permalink
Merge pull request #383 from SciML/compathelper/new_version/2024-02-2…
Browse files Browse the repository at this point in the history
…2-07-06-42-496-00575257023

CompatHelper: bump compat for ModelingToolkit to 9 for package docs, (keep existing compat)
  • Loading branch information
ChrisRackauckas authored Feb 24, 2024
2 parents e30b10d + fe891b6 commit 7897f20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Documenter = "1"
DocumenterCitations = "1"
IncompleteLU = "0.2"
LinearSolve = "2"
ModelingToolkit = "8"
ModelingToolkit = "8, 9"
NonlinearSolve = "3"
OrdinaryDiffEq = "6"
Plots = "1"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/basics/diagnostics_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ using ModelingToolkit, NonlinearSolve
# Define a nonlinear system
eqs = [0 ~ σ * (y - x), 0 ~ x * (ρ - z) - y, 0 ~ x * y - β * z]
@named ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
@mtkbuild ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
u0 = [x => 1.0, y => 0.0, z => 0.0]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/modelingtoolkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using ModelingToolkit, NonlinearSolve
# Define a nonlinear system
eqs = [0 ~ σ * (y - x), 0 ~ x * (ρ - z) - y, 0 ~ x * y - β * z]
@named ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
@mtkbuild ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
u0 = [x => 1.0, y => 0.0, z => 0.0]
Expand Down

0 comments on commit 7897f20

Please sign in to comment.