Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 1.13 KB

README.md

File metadata and controls

15 lines (13 loc) · 1.13 KB

SimpleDiffEq.jl

Build Status Coverage Status codecov.io

SimpleDiffEq.jl is a library of basic differential equation solvers. They are the "no-cruft" versions of the solvers which don't and won't ever support any fancy features like events. They are self-contained. This library exists for a few purposes. For one, it can be a nice way to teach "how to write a solver for X" in Julia by having a simple yet optimized version. Secondly, since it's hooked onto the common interface, these algorithms can serve as benchmarks to test the overhead of the full integrators on the simplest case. Lastly, these can be used to test correctness of the more complicated implementations.