1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//! # Library Prelude
//!
//! Convenient import for all core types, traits, and solvers in the `differential-equations` crate.
//!
//! ## What is re-exported?
//!
//! - All major solver types for ODE, DDE, and SDE problems
//! - Problem and trait types for each equation class
//! - Output control, event, and solution types
//! - Common utility types (e.g., error, status, interpolation)
//! - Key nalgebra types for vector/matrix work
//!
//! ## Solver Naming
//!
//! Solvers are accessed as `MethodType::solver_name`, e.g. `ExplicitRungeKutta::dop853`, `ImplicitRungeKutta::radau5`.
//! This keeps the API organized and avoids naming conflicts.
//!
//! ## Example Solvers
//!
//! - `ExplicitRungeKutta::dop853`, `dopri5`, `euler`, `rk4`, `rkv65e`, `rkv98e`
//! - `ImplicitRungeKutta::radau5`
//! - `DiagonallyImplicitRungeKutta::kvaerno745`
//!
//! ## Method Support Table
//!
//! | Method | ODE | DDE | SDE | DAE |
//! |-------------------------------|:---:|:---:|:---:|:---:|
//! | ExplicitRungeKutta | X | X | (X) | |
//! | ImplicitRungeKutta | X | | | {X} |
//! | DiagonallyImplicitRungeKutta | X | | | |
//! | AdamsPredictorCorrector | X | | | |
//!
//! - `X` = Supported
//! - `(X)` = Supported for fixed step only (e.g., Euler, RK4)
//! - `{X}` = Supported using ImplicitRungeKutta::radau5 solver only
//!
//! For full examples and advanced usage, see the [examples directory](https://github.com/Ryan-D-Gast/differential-equations/tree/master/examples).
//!
// Numerical Methods
pub use crate;
// Problem Types & Traits
pub use crate;
pub use crate;
pub use crate;
pub use crate;
// Output, Events, and Solution Types
pub use crateControlFlag;
pub use crateState;
pub use crateError;
pub use crateInterpolation;
pub use crate;
pub use crateSolution;
pub use crateEvals;
pub use crateStatus;
// Linear Algebra
pub use crateMatrix;