(&mut self, expr: &LinearExpression)
| 390 | } |
| 391 | |
| 392 | fn refine_equality(&mut self, expr: &LinearExpression) { |
| 393 | if let Some((path, low, high)) = interval_from_unary_expr(expr) { |
| 394 | self.refine_path_interval(&path, Interval::new(low, high)); |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | fn refine_less_equal(&mut self, expr: &LinearExpression) { |
| 399 | let Some((path, coeff, cst)) = unary_linear_expr(expr) else { |
no test coverage detected