Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
TorkelE committed May 29, 2024
1 parent 261ac7a commit ffb230e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/pages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pages = Any[
"model_creation/dsl_advanced.md",
#"model_creation/programmatic_CRN_construction.md",
#"model_creation/compositional_modeling.md",
#"model_creation/constraint_equations.md",
"model_creation/constraint_equations.md",
# Events.
#"model_creation/parametric_stoichiometry.md",# Distributed parameters, rates, and initial conditions.
# Loading and writing models to files.
Expand Down
6 changes: 3 additions & 3 deletions docs/src/model_creation/constraint_equations.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ creating these two systems.
Here, to create differentials with respect to time (for our differential equations), we must import the time differential operator from Catalyst. We do this through `D = default_time_deriv()`. Here, `D(V)` denotes the differential of the variable `V` with respect to time.

```@example ceq1
using Catalyst, DifferentialEquations, Plots
using Catalyst, OrdinaryDiffEq, Plots
t = default_t()
D = default_time_deriv()
Expand Down Expand Up @@ -73,7 +73,7 @@ plot(sol)
As an alternative to the previous approach, we could have constructed our
`ReactionSystem` all at once by directly using the symbolic interface:
```@example ceq2
using Catalyst, DifferentialEquations, Plots
using Catalyst, OrdinaryDiffEq, Plots
t = default_t()
D = default_time_deriv()
Expand Down Expand Up @@ -107,7 +107,7 @@ advanced_simulations) tutorial.

Let's first create our equations and unknowns/species again
```@example ceq3
using Catalyst, DifferentialEquations, Plots
using Catalyst, OrdinaryDiffEq, Plots
t = default_t()
D = default_time_deriv()
Expand Down

0 comments on commit ffb230e

Please sign in to comment.