//! Global optimization algorithms.
//!
//! Provides methods for finding global minima of functions,
//! avoiding local minima traps that affect local optimization methods.
//!
//! All algorithms use tensor operations and are generic over `R: Runtime<DType = DType>`.
pub use *;