ai-graph 0.0.18

Ai Graph is a new tool for creating machine learning that runs blazingly fast when learning has finished.
Documentation
pub mod creature;

use self::creature::Creature;

#[derive(Clone, Debug)]
pub struct Species {
    pub creatures: Vec<Creature>,
    pub key: Option<Vec<i8>>,
}