pub trait Check<T = usize> { // Required method fn extends_sat(&self, solution: &[T], x: &T) -> bool; }
Check if a combination of values is satisfactory
Return true if new value extends an already valid partial solution
solution
x