| 1026 | /// Evaluate a level under a concrete assignment of parameter indices |
| 1027 | /// to naturals (`imax(a,b) = 0` when `b = 0`). Used to certify test |
| 1028 | /// vectors semantically, independent of the comparator under test. |
| 1029 | fn eval_level(l: &AU, assign: &[u64]) -> u64 { |
| 1030 | match l.data() { |
| 1031 | UnivData::Zero(_) => 0, |