jagua_rs/probs/
mod.rs

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;