radiate-gp 1.2.22

Extensions for radiate. Genetic Programming implementations for graphs (neural networks) and trees.
Documentation
mod aggregate;
mod builder;
mod chromosome;
mod codec;
mod crossover;
mod diversity;
mod eval;
mod graph;
mod iter;
mod mutation;
mod node;
mod replacement;
mod transaction;

pub use aggregate::GraphAggregate;
pub use builder::NodeBuilder;
pub use chromosome::GraphChromosome;
pub use codec::GraphCodec;
pub use crossover::GraphCrossover;
pub use diversity::NeatDistance;
pub use eval::{GraphEvalCache, GraphEvaluator};
pub use graph::Graph;
pub use iter::GraphIterator;
pub use mutation::GraphMutator;
pub use node::{Direction, GraphNode, GraphNodeId};
pub use replacement::GraphReplacement;
pub use transaction::GraphTransaction;