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.
2 parents 58087a7 + bfac6ae commit d00002fCopy full SHA for d00002f
HISTORY.md
@@ -2,9 +2,24 @@
2
3
## Catalyst unreleased (master branch)
4
5
+
6
+## Catalyst 14.4.1
7
+- Support for user-defined functions on the RHS when providing coupled equations
8
+ for CRNs using the @equations macro. For example, the following now works:
9
+ ```julia
10
+ using Catalyst
11
+ f(A, t) = 2*A*t
12
+ rn = @reaction_network begin
13
+ @equations D(A) ~ f(A,t)
14
+ end
15
+ ```
16
+ Note that user-defined functions will not work on the LHS of equations.
17
18
## Catalyst 14.4
19
- Symbolics 6 support.
20
21
22
23
## Catalyst 14.3
24
- Support for simulating stochastic chemical kinetics models with explicitly
25
time-dependent propensities (i.e. where the resulting `JumpSystem` contains
0 commit comments