1 2 3 4 5 6 7 8 9 10 11
/// Strip Packing Problem (SPP) module #[cfg(feature = "spp")] pub mod spp; /// Bin Packing Problem (BPP) module #[cfg(feature = "bpp")] pub mod bpp; /// Multi Strip Packing Problem (MSPP) module #[cfg(feature = "mspp")] pub mod mspp;