ecrs 0.1.0-beta.4

Evolutionary computation tools & algorithms
Documentation
//! # ECRS - Evolutionary Computation for Rust
//!
//! Evolutionary computation tools & algorithms (also some bioinspired ones)
//!
//! ## Disclaimer
//!
//! Please note that this library is in early development phase
//! and breaking changes may occur without nay notice.

#![allow(dead_code)]
#![allow(clippy::new_without_default)]
#![allow(clippy::type_complexity)]

extern crate core;

#[cfg(feature = "aco")]
pub mod aco;
#[cfg(feature = "ff")]
pub mod ff;
#[cfg(feature = "ga")]
pub mod ga;
pub mod prelude;
#[cfg(feature = "pso")]
pub mod pso;
#[cfg(feature = "test_functions")]
pub mod test_functions;