pub trait Peaker {
// Required method
fn peak(&mut self, mins: &[usize], values: &[usize]) -> Option<usize>;
}
Expand description
A strategy of width function. It determines the order how a function is applied.
For example which column we shall peak to truncate when doing width alogorithms.