optimum 0.0.4

Future Framework to solve optimization problems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::core::{Evaluation, Objective, Problem};

impl Problem for () {
    const OBJECTIVE: Objective = Objective::Min;

    type Solution = ();

    type Value = usize;

    fn objective_function(&self, _: Self::Solution) -> Evaluation<Self> {
        Evaluation::new((), 0)
    }
}