Changes in version 2.1.0 (2024-12-04) Better support for ModelingToolkit JIT tracing on SDEs. Changes in version 2.0.1 (2024-03-18) Updated to support ModelingToolkit v9 from the Julia side with the JIT compilation. Changes in version 2.0.0 (2023-10-20) Support new DiffEqGPU syntax. This requires passing a backend. Supports NVIDIA CUDA, Intel OneAPI, AMD GPUs, and Apple Metal GPUs. Also much faster GPU compilation and runtime performance. Changes in version 1.1.2 Bugfixes for newer Julia versions. Changes in version 1.1.1 (2021-08-05) This package now ensures that the tests are not run on build so that installation of Julia will not occur unless the user specifically asks for it via diffeqr::diffeq_setup() Changes in version 1.0.0 (2020-08-26) Full recreation of the package. This provides a new simplified interface over DifferentialEquations.jl that matches the Julia interface almost 1-1. Changes in version 0.1.1 (2018-04-27) This is a quick patch to fix the vignettes of the v0.1.0 release. Changes in version 0.1.0 (2018-04-24) This is the initial release of the package. It provides a simplified interface over DifferentialEquations.jl. Currently it's interfaced via 5 functions: - diffeq_setup - ode.solve - sde.solve - dae.solve - dde.solve The return is a list with sol$u and sol$t. In future updates this will be backwards compatibly updated to be a full solution object with the interpolation.