radiate_core/stats/
mod.rs1pub mod distribution;
2pub mod metrics;
3pub mod statistics;
4pub mod time_statistic;
5
6pub use distribution::*;
7pub use metric_names::*;
8pub use metrics::*;
9pub use statistics::*;
10pub use time_statistic::*;
11
12pub mod metric_names {
13 pub const EVOLUTION_TIME: &str = "Time";
14 pub const SCORE: &str = "Score";
15 pub const AGE: &str = "Age";
16
17 pub const REPLACE_AGE: &str = "Replace(Age)";
18 pub const REPLACE_INVALID: &str = "Replace(Invalid)";
19
20 pub const GENOME_SIZE: &str = "Genome Size";
21 pub const FRONT: &str = "Front";
22
23 pub const UNIQUE_MEMBERS: &str = "Unique(members)";
24 pub const UNIQUE_SCORES: &str = "Unique(scores)";
25
26 pub const FITNESS: &str = "Fitness";
27
28 pub const SPECIES_COUNT: &str = "Species(Count)";
29 pub const SPECIES_AGE_FAIL: &str = "Species(Age Removed)";
30 pub const SPECIES_DISTANCE_DIST: &str = "Species(Distance)";
31 pub const SPECIES_CREATED: &str = "Species(Created)";
32 pub const SPECIES_DIED: &str = "Species(Died)";
33 pub const SPECIES_AGE: &str = "Species(Age)";
34}