Catalyst.jl
Catalyst.jl copied to clipboard
Compounds don't support interpolation of variables
Which means they are not usable programmatically within code. For example
@variables t
@species A(t) B(t)
a = A
@compound AB a B # errors
@compound AB $a B # errors
So there is no way for a user to have a species stored in a variable and get it into the @compound
macro.
That's annoying. Thought we had that in the tests, but apparently missed to point this out properly when I suggested them.
I thought so too, and definitely mentioned it, but somehow it was apparently missed.
now works on master