We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab71ba6 commit 61c0e4aCopy full SHA for 61c0e4a
docs/src/introduction_to_catalyst/math_models_intro.md
@@ -72,6 +72,16 @@ while the jump process propensity function is
72
```math
73
a(\mathbf{X}(t)) = k A (A-1) B.
74
```
75
+One can also specify during system construction that by default combinatoric
76
+scalings should be disabled, i.e.
77
+```@example math_examples
78
+using Catalyst
79
+rn = @reaction_network begin
80
+ @combinatoric_ratelaws false
81
+ k, 3A + 2B --> A + 3D
82
+end
83
+osys = convert(ODESystem, rn)
84
+```
85
86
## [Reaction Rate Equation (RRE) ODE Models](@id math_models_in_catalyst_rre_odes)
87
The RRE ODE models Catalyst creates for a general system correspond to the coupled system of ODEs given by
0 commit comments