(&mut self, op_id: u64, expr: IdedExpr)
| 1123 | } |
| 1124 | |
| 1125 | pub(crate) fn add_term(&mut self, op_id: u64, expr: IdedExpr) { |
| 1126 | self.terms.push(expr); |
| 1127 | self.ops.push(op_id); |
| 1128 | } |
| 1129 | |
| 1130 | fn balanced_tree(&mut self, lo: usize, hi: usize) -> IdedExpr { |
| 1131 | let mid = (lo + hi).div_ceil(2); |
no test coverage detected