Sam Isaacson

Results 144 issues of Sam Isaacson

I'm still seeing a couple bugs on 9.36: ```julia using ModelingToolkit, OrdinaryDiffEq, Plots t = ModelingToolkit.t_nounits D = ModelingToolkit.D_nounits @variables x(t) @parameters c(t) @mtkbuild sys = ODESystem( D(x) ~ c...

bug

@ChrisRackauckas the latest release (6.15.1) breaks Latexify with unicode subscripts/superscripts. (I noticed this as suddenly Catalyst doc builds are failing): ```julia using Symbolics, Latexify @variables t Gᴾ(t) latexraw( 0 ~...

Due to: https://github.com/JuliaSymbolics/Symbolics.jl/issues/1314 This is just to track that.

bug

Catalyst exports a lot of stuff currently, and some of it could be moved to sub-modules (or libraries) to clean up and reduce the default exports (network analysis functionality beyond...

There seems to be an issue with format checks from JuliaFormatter not just causing large reformattings suddenly, but also now leading to bugs in the formatted code: https://github.com/domluna/JuliaFormatter.jl/issues/878 Once this...

Once https://github.com/SciML/ModelingToolkit.jl/pull/3114/files is merged, and updated to include rational functions, we should probably remove the Catalyst HomotopyContinuation extension and instead have users go via MTK.

Needs https://github.com/SciML/ModelingToolkit.jl/pull/3123 and an MTK release.

Since the latter is more likely to be updated as things change in MTK.

https://github.com/SciML/Catalyst.jl/pull/1070 disabled StructuralIdentifiability tests and added a warning in the docs about it having issues. Once they are resolved we should reenable the tests.

bug

```julia rn1 = @reaction_network rn_observed begin @variables X1(t) @observables X2(t) ~ X1(t) k, A --> 0 end ``` when expanded gives ```julia :(Catalyst.complete(begin var"#7616#t" = Catalyst.default_t() begin var"#7617###1945" = begin...

bug