Returns the constant term
(&self)
| 39 | |
| 40 | /// Returns the constant term |
| 41 | pub fn constant(&self) -> Integer { |
| 42 | self.cst.clone() |
| 43 | } |
| 44 | |
| 45 | /// Get the coefficient of variable `var`, e.g. for linear expression `3a+4b-5c`, |
| 46 | /// the coefficient of variable `a` is 3. If `var` is not found in the expression, |
no outgoing calls
no test coverage detected