jagua_rs/probs/spp/io/mod.rs
1mod export;
2mod import;
3
4/// External (serializable) representations of all Strip Packing Problem related entities.
5pub mod ext_repr;
6
7/// Exports a strip packing solution out of the library.
8pub use export::export;
9
10/// Imports a strip packing instance into the library.
11pub use import::import;