1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#![deny(missing_docs, trivial_casts, trivial_numeric_casts, unsafe_code, unused_import_braces,
        unused_qualifications)]
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]
#![cfg_attr(feature = "clippy", deny(clippy, unicode_not_nfc, wrong_pub_self_convention))]
#![cfg_attr(feature = "clippy", allow(use_debug, too_many_arguments))]

//! Implementation of `NeuroEvolution` of Augmenting Topologies [NEAT]
//! (http://nn.cs.utexas.edu/downloads/papers/stanley.ec02.pdf)
//! This implementation uses a Continuous-Time Recurrent Neural Network (CTRNN)
//! (Yamauchi and Beer, 1994).

#[cfg(feature = "telemetry")]
#[macro_use]
extern crate rusty_dashed;

extern crate conv;
extern crate crossbeam;
extern crate num_cpus;
extern crate rand;
extern crate rulinalg;

#[cfg(feature = "telemetry")]
#[macro_use]
extern crate serde_derive;

#[cfg(feature = "telemetry")]
extern crate serde_json;

pub use self::ctrnn::Ctrnn;
pub use self::environment::Environment;
pub use self::gene::Gene;
pub use self::genome::Genome;
pub use self::organism::Organism;
pub use self::population::Population;
pub use self::specie::Specie;
pub use self::species_evaluator::SpeciesEvaluator;
pub use ctrnn::CtrnnNeuralNetwork;

mod ctrnn;
/// Trait to define test parameter
pub mod environment;
mod gene;
/// A collection of genes
pub mod genome;
mod mutation;
/// A genome plus fitness
pub mod organism;
/// A collection of species with champion
pub mod population;
mod specie;
mod species_evaluator;