1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//TODO add ai graph with fixed number of inputs and outputs but costom layers
//TODO More tests that check if the graph is vaild
//TODO Consider changing file structure

#![feature(tool_lints)]
#![warn(clippy::pedantic)]
//! Ai Graph is a new tool for creating machine learning that runs blazingly fast when learning has finnished.

pub mod generation;
mod tests;

pub const DEBUG: DebugList = DebugList { check: false };

pub struct DebugList {
    check: bool,
}