Skip to content

Commit d00002f

Browse files
committed
Merge branch 'HISTORY'
2 parents 58087a7 + bfac6ae commit d00002f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

HISTORY.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,24 @@
22

33
## Catalyst unreleased (master branch)
44

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+
518
## Catalyst 14.4
619
- Symbolics 6 support.
720

21+
22+
823
## Catalyst 14.3
924
- Support for simulating stochastic chemical kinetics models with explicitly
1025
time-dependent propensities (i.e. where the resulting `JumpSystem` contains

0 commit comments

Comments
 (0)