Skip to content

Commit 337d263

Browse files
TorkelEisaacsas
andauthored
Update docs/src/introduction_to_catalyst/introduction_to_catalyst.md
Co-authored-by: Sam Isaacson <[email protected]>
1 parent 5768ec0 commit 337d263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/introduction_to_catalyst/introduction_to_catalyst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ underlying problem.
156156

157157

158158
!!! note
159-
Above we have used `repressilator = complete(repressilator)` and `odesys = complete(odesys)` to mark these systems as *complete*. This must be done before any system is given as input to a `convert` call or some problem type. Models created through the @reaction_network` DSL (which is introduced elsewhere, and primarily used throughout these documentation) are created as complete. Hence `complete` does not need to be called on these models. An expanded description on *completeness* can be found [here](@ref completeness_note).
159+
Above we have used `repressilator = complete(repressilator)` and `odesys = complete(odesys)` to mark these systems as *complete*, indicating to Catalyst and ModelingToolkit that these models are finalized. This must be done before any system is given as input to a `convert` call or some problem type. `ReactionSystem` models created through the @reaction_network` DSL (which is introduced elsewhere, and primarily used throughout these documentation) are always marked as complete when generated. Hence `complete` does not need to be called on them. Symbolically generated `ReactionSystem`s, `ReactionSystem`s generated via the `@network_component` macro, and any ModelingToolkit system generated by `convert` always needs to be manually marked as `complete` as we do for `odesys` above. An expanded description on *completeness* can be found [here](@ref completeness_note).
160160

161161
At this point we are all set to solve the ODEs. We can now use any ODE solver
162162
from within the

0 commit comments

Comments
 (0)