Skip to content

Commit 61c0e4a

Browse files
committed
show DSL option for combinatoric_ratelaws
1 parent ab71ba6 commit 61c0e4a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

docs/src/introduction_to_catalyst/math_models_intro.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,16 @@ while the jump process propensity function is
7272
```math
7373
a(\mathbf{X}(t)) = k A (A-1) B.
7474
```
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+
```
7585

7686
## [Reaction Rate Equation (RRE) ODE Models](@id math_models_in_catalyst_rre_odes)
7787
The RRE ODE models Catalyst creates for a general system correspond to the coupled system of ODEs given by

0 commit comments

Comments
 (0)