//! Methods for solving Differential Algebraic Equations (DAEs)
//!
//! This module provides the implementation of numerical methods for solving DAE systems.
//! The methods are organized based on the type of DAE system they are designed to solve:
//! - Backward Differentiation Formula (BDF) methods for stiff DAEs
//! - Specialized methods for semi-explicit DAEs
//! - Specialized methods for fully implicit DAEs
//! - Index reduction techniques combined with BDF methods for higher-index DAEs
//! - Krylov subspace methods for large DAE systems
//! - Block-structured preconditioners for improving Krylov method performance
// BDF methods for DAE systems
// Index reduction BDF methods for higher-index DAEs
// Krylov subspace methods for large DAE systems
// Block-structured preconditioners for DAE systems
// Radau IIA implicit Runge-Kutta for stiff DAEs
// Re-export main solver functions
pub use ;
pub use ;
pub use ;
// Re-export preconditioner creation functions
pub use ;