Skip to content

Commit 832a532

Browse files
Merge pull request #468 from ChrisRackauckas-Claude/fix-docs-build-path
Fix documentation build errors in Buildkite CI
2 parents 6661314 + 135cccb commit 832a532

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
While the default ModelingTolkit backend is highly capable, it doesn't scale well to very large systems of ODEs, present iun high resolution and/or higher dimensional PDE semidiscretizations that MethodOfLines.jl is capable of generating.
44

5-
To overcome this limitation, and scale MOL to realistic physics simulations, JuliaHub Inc. has released [JuliaSimCompiler.jl (installation instructions here)](https://help.juliahub.com/juliasimcompiler/dev/).
5+
To overcome this limitation, and scale MOL to realistic physics simulations, JuliaHub Inc. has released [JuliaSimCompiler.jl](https://juliahub.com/products/juliasim/) (available through JuliaHub).
66

77
Whenever this package and MethodOfLines are loaded together, MOL will also load `MethodOfLinesJuliaSimCompilerExt.jl`, an extension that takes advantage of this backend to speed up your compilation and solves automatically, with the same interface you are used to.
88

docs/src/tutorials/sispde.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ $$f(d_{S},d_{I}) = \int_{0}^{1}I(x;d_{S},d_{I}).$$
119119
function episize!(dS, dI)
120120
newprob = remake(prob, p = [dS, dI, 3, 0.1])
121121
steadystateprob = SteadyStateProblem(newprob)
122-
state = solve(steadystateprob, DynamicSS(Tsit5()))
123-
y = sum(state[100:end]) / 99
122+
steadystate = solve(steadystateprob, DynamicSS(Tsit5()))
123+
y = sum(steadystate[100:end]) / 99
124124
return y
125125
end
126126
episize!(exp(1.0), exp(0.5))

0 commit comments

Comments
 (0)