File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Breaking updates and feature summaries across releases
2
2
3
3
## Catalyst unreleased (master branch)
4
+
5
+ ## Catalyst 10.8
4
6
- Added the ability to use symbolic stoichiometry expressions via the DSL. This should now work
5
7
``` julia
6
8
rn = @reaction_network rs begin
7
9
t* k, (α+ k+ B)* A --> B
8
10
1.0 , α* A + 2 * B --> k* C + α* D
9
11
end k α
10
12
```
11
- Here Catalyst will try to preserve the order of symbols within an expression, taking the leftmost as the species and
12
- everything multiplying that species as stoichiometry. For example, we can interpret the above reaction as ` S1 A --> S2 b `
13
- where ` S1 = (α+k+B) ` is the stoichiometry of the reactant ` A ` and ` 1 ` is the stoichiometry of the reactant ` B ` . For
13
+ Here Catalyst will try to preserve the order of symbols within an expression,
14
+ taking the rightmost as the species and everything multiplying that species as
15
+ stoichiometry. For example, we can interpret the above reaction as `S1 A -->
16
+ S2 b` where ` S1 = (α+k+B)` is the stoichiometry of the reactant ` A` and ` 1` is
17
+ the stoichiometry of the reactant ` B ` . For
14
18
``` julia
15
19
rn = @reaction_network rs begin
16
20
1.0 , 2 X* (Y + Z) --> XYZ
28
32
rx = @reaction 1.0 , 2 X* (Y + Z) --> XYZ
29
33
```
30
34
will make ` X ` a parameter and ` Y ` , ` Z ` and ` XYZ ` species.
31
- - Symbolic stoichiometry supports interpolation of expressions.
35
+ - Symbolic stoichiometry supports interpolation of expressions in
36
+ ` @reaction_network ` and ` @reaction ` .
32
37
33
38
## Catalyst 10.7
34
39
- Added the ability to use symbolic variables, parameters and expressions for
Original file line number Diff line number Diff line change 1
1
name = " Catalyst"
2
2
uuid = " 479239e8-5488-4da2-87a7-35f2df7eef83"
3
- version = " 10.7 .0"
3
+ version = " 10.8 .0"
4
4
5
5
[deps ]
6
6
AbstractAlgebra = " c3fe647b-3220-5bb0-a1ea-a7954cac585d"
You can’t perform that action at this time.
0 commit comments