mod problems;
#[cfg(feature = "thin-vec")]
mod thin_vec;
#[cfg(not(feature = "thin-vec"))]
mod vec;
#[allow(unused_imports)]
pub use problems::*;
#[cfg(feature = "thin-vec")]
#[allow(unused_imports)]
pub use thin_vec::*;
#[cfg(not(feature = "thin-vec"))]
#[allow(unused_imports)]
pub use vec::*;