fugue_evo/genome/mod.rs
1//! Genome abstractions and implementations
2//!
3//! This module provides the core `EvolutionaryGenome` trait and built-in genome types.
4
5pub mod bit_string;
6pub mod bounds;
7pub mod composite;
8pub mod dynamic_real_vector;
9pub mod permutation;
10pub mod real_vector;
11pub mod traits;
12pub mod tree;
13
14pub mod prelude {
15 pub use super::bit_string::*;
16 pub use super::bounds::*;
17 pub use super::composite::*;
18 pub use super::dynamic_real_vector::*;
19 pub use super::permutation::*;
20 pub use super::real_vector::*;
21 pub use super::traits::*;
22 pub use super::tree::*;
23}