pub trait JobPermutation {
fn get(&self) -> Vec<Vec<usize>>;
fn validate(&self, permutation: &[usize]) -> bool;
}Expand description
Defines a trait to work with multi job’s permutations.
pub trait JobPermutation {
fn get(&self) -> Vec<Vec<usize>>;
fn validate(&self, permutation: &[usize]) -> bool;
}Defines a trait to work with multi job’s permutations.