merge main

This commit is contained in:
jverzani
2025-06-14 07:24:47 -04:00
40 changed files with 151 additions and 122 deletions

View File

@@ -411,7 +411,7 @@ p = [γ => 0.0,
prob = ODEProblem(sys, u0, TSPAN, p, jac=true)
sol = solve(prob,Tsit5())
plot(t -> sol(t)[3], t -> sol(t)[4], TSPAN..., legend=false)
plot(t -> sol(t)[1], t -> sol(t)[3], TSPAN..., legend=false)
```
The toolkit will automatically generate fast functions and can perform transformations (such as is done by `ode_order_lowering`) before passing along to the numeric solves.