/// Second-order optimization methods
///
/// This module provides advanced optimization algorithms that use second-order information
/// (Hessian or Fisher Information Matrix) to achieve faster convergence than first-order methods.
// Re-export for convenience
pub use ;
pub use NewtonCG;
pub use ;