Yingbo Ma

Results 223 comments of Yingbo Ma

I am still thinking about which dimension should partials belong. Should it be the leading dimension or the tilling dimension? It does feel right that partials should be in the...

Are there discontinuities or irregularities in the system?

```julia # Codegen issue # Periodic callback of dt = 1 # args: [input(k-1)] # currect behavior input(k) = (t >= 2) delay(k) = input(k-1) -> # Current wrong implementation...

Yes, indeed. I need to update this PR as well.

Yeah, this should make SDIRK methods more competitive against BDF methods and Rosenbrock methods as well.

![θ](https://github.com/SciML/OrdinaryDiffEq.jl/assets/17304743/b35e5522-b6ec-44e2-9bc2-84110a9fa8d8) Here's the evolution of the convergence rate for this particular problem. I guess constant extrapolation isn't a bad guess to capture the plateaus.

![θ-t](https://github.com/SciML/OrdinaryDiffEq.jl/assets/17304743/d999ba41-d2d8-48bb-ad60-c8e9b0c072d7) Here's theta vs model time.

The test failures seem unrelated.

Many of the regression tests might be too stringent.

> One per line is insane to read when you get to like 30 keyword arguments. Closing parenthesis is fine on its own line though. Yeah, I agree. I made...