mathhook-core 0.2.0

Core mathematical engine for MathHook - expressions, algebra, and solving
Documentation
1
2
3
4
5
6
7
8
9
10
//! Second-order ODE solvers
//!
//! Provides solvers for common second-order differential equation types:
//! - Constant coefficients: ay'' + by' + cy = r(x)
//! - Future: Cauchy-Euler, variation of parameters, etc.

pub mod constant_coeff;

// Re-export main types
pub use constant_coeff::{ConstantCoeffSecondOrderSolver, RootType};