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
//! This module defines the traites for the vectorized variables.
use super::Name;
use super::Values;

pub trait VariableProperties: std::fmt::Debug {
    fn name(&self) -> &Name;

    fn values(&self) -> &Values;

    fn rescale(&self) -> Values;
}