Skip to content

Commit

Permalink
Merge pull request #2957 from contradict/fix-docs-exception
Browse files Browse the repository at this point in the history
Fix an exception during documentation build
  • Loading branch information
ChrisRackauckas authored Aug 17, 2024
2 parents 6cc9816 + 7dabc32 commit 644f9bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Documenter, ModelingToolkit
using ModelingToolkit: SciMLBase

# Make sure that plots don't throw a bunch of warnings / errors!
ENV["GKSwstype"] = "100"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/internals.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The procedure for variable elimination inside [`structural_simplify`](@ref) is

## Preparing a system for simulation

Before a simulation or optimization can be performed, the symbolic equations stored in an [`AbstractSystem`](@ref) must be converted into executable code. This step typically occurs after the simplification explained above, and is performed when an instance of a [`SciMLBase.SciMLProblem`](@ref), such as a [`ODEProblem`](@ref), is constructed.
Before a simulation or optimization can be performed, the symbolic equations stored in an [`AbstractSystem`](@ref) must be converted into executable code. This step typically occurs after the simplification explained above, and is performed when an instance of a [`SciMLBase.AbstractSciMLProblem`](@ref), such as a [`ODEProblem`](@ref), is constructed.
The call chain typically looks like this, with the function names in the case of an `ODESystem` indicated in parentheses

1. Problem constructor ([`ODEProblem`](@ref))
Expand Down

0 comments on commit 644f9bc

Please sign in to comment.