Skip to content

Commit 80e34ae

Browse files
committed
update history file
1 parent 40985ec commit 80e34ae

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

HISTORY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ assess_identifiability(goodwind_oscillator; measured_quantities=[:M])
1616
to assess (global) structural identifiability for all parameters and variables of the `goodwind_oscillator` model (under the presumption that we can measure `M` only).
1717
- Automatically handles conservation laws for structural identifiability problems (eliminates these internally to speed up computations).
1818
- Adds a tutorial to illustrate the use of the extension.
19+
- Enable adding metadata to individual reactions, e.g:
20+
```julia
21+
rn = @reaction_network begin
22+
@parameters η
23+
k, 2X --> X2, [noise_scaling=η]
24+
end
25+
get_metadata(rn, :noise_scaling)
26+
```
27+
- Changed fields of internal `Reaction` structure. `ReactionSystems`s saved using `serialize` on previous Catalyst versions cannot be loaded using this (or later) versions.
1928
- Simulation of spatial ODEs now supported. For full details, please see https://github.com/SciML/Catalyst.jl/pull/644 and upcoming documentation. Note that these methods are currently considered alpha, with the interface and approach changing even in non-breaking Catalyst releases.
2029
- LatticeReactionSystem structure represents a spatial reaction network:
2130
```julia

0 commit comments

Comments
 (0)