mathhook_core/calculus/ode/
first_order.rs

1//! First-order ODE solvers
2//!
3//! Implements various methods for solving first-order ordinary differential equations:
4//! - Separable equations
5//! - Linear first-order (integrating factor method)
6//! - Exact equations
7//! - Homogeneous equations
8//! - Bernoulli equations
9
10pub mod bernoulli;
11pub mod exact;
12pub mod homogeneous;
13pub mod linear;
14pub mod separable;
15
16pub use bernoulli::BernoulliODESolver;
17pub use exact::ExactODESolver;
18pub use homogeneous::HomogeneousODESolver;
19pub use linear::{LinearFirstOrderSolver, ODEError, ODEResult};
20pub use separable::SeparableODESolver;