rustimizer 0.1.1

PoC for decision making in Rust. Disclaimer: The project's name was chosen with the help of an LLM.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod name;
mod scaling;
mod traits;
mod values;
mod variableautoscale;
mod variableinvertedautoscale;

pub use self::name::Name;
pub use self::traits::VariableProperties;
pub use self::values::Values;
pub use self::variableautoscale::VariableAutoscale;
pub use self::variableinvertedautoscale::VariableInvertedAutoscale;

pub mod prelude {}