1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![allow(clippy::bool_comparison, clippy::type_complexity)] #![cfg_attr(not(feature = "std"), no_std)] #![deny(missing_debug_implementations)] #[cfg(feature = "std")] pub mod genetic_algorithm; #[cfg(feature = "std")] pub mod prelude; pub use mop_common_defs::Solver; #[cfg(feature = "std")] mod quality_comparator; #[cfg(feature = "std")] mod utils;