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