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
//TODO add ai graph with fixed number of inputs and outputs but costom layers
//TODO More tests that check if the graph is vaild

#![feature(tool_lints)]
#![warn(clippy::pedantic)]
//! Ai Graph is a new tool for creating machine learning that runs blazingly fast when learning has finnished.
mod breed;
mod new_genes;
mod output;
mod tests;
mod validate;
#[derive(Clone, Copy, Debug)]
enum MutationLine {
    Pass,
    Reset,
    Multiply(i8),
    Divide(i8),
    Add(i8),
}
#[derive(Clone, Copy, Debug)]
enum MutationNode {
    Multiply,
    Divide,
    Add,
}

#[derive(Clone, Debug)]
/// Gene stores the "graph". Different graphs will form different output.
pub struct Gene {
    line_dna: Vec<Vec<Vec<MutationLine>>>,
    node_dna: Vec<Vec<MutationNode>>,
}
// mod ai_graph {
//     use Gene;
// }