Torkel Loman

Results 439 comments of Torkel Loman

Superseded by https://github.com/SciML/Catalyst.jl/pull/884

Yeah, I think I entirely forgot about this when I added e.g. the `metadata` field. It should be noted that MTK also have related problems: https://github.com/SciML/ModelingToolkit.jl/issues/2638 which we might need...

Maybe something we can add to the dev docs (once we write those)? Just as a natural place to keep that. Alternatively we can just create an internal .txt doc...

I second that GitKraken is a really nice tool, if you haven't checked it out yet.

@vyudu I tried to merge this onto master for you, but couldn't get it to work unfortunately. If you check the "Files changed" tab at the top of the PR...

> Thanks @vyudu great first PR. Second that! And sorry for giving you poor advice on the rebase/merge thing. I tried @isaacsas's method properly now as well and it works...

The plan is to basically split this one. This one then because a pure intro to Catalyst that do not really assume that the user have read anything else (but...

Do you mean this definition: ```julia # determine which unknowns a reaction depends on function MT.get_variables!(deps::Set, rx::Reaction, variables) (rx.rate isa Symbolic) && get_variables!(deps, rx.rate, variables) for s in rx.substrates #...

Stuff like ```julia f(x) = log(x) - 5x * sin(7) # Declares the model. rs = @reaction_network begin (f(p),d), 0 X end ``` works, however, I am not sure if...