Returns `true` if the linear combination has no terms.
(&self)
| 319 | |
| 320 | /// Returns `true` if the linear combination has no terms. |
| 321 | pub fn is_empty(&self) -> bool { |
| 322 | self.terms.is_empty() |
| 323 | } |
| 324 | |
| 325 | /// Add a term to the linear combination. |
| 326 | pub fn push(&mut self, term: (F, LCTerm)) -> &mut Self { |
no outgoing calls
no test coverage detected