1 2 3 4 5 6 7 8 9 10
pub mod algorithms; pub mod common; /// Re-export common types pub use common::*; /// Initialize the optimization engine pub fn init() { tracing::info!("Samyama Optimization Engine Initialized"); }