(&self)
| 623 | } |
| 624 | |
| 625 | pub fn is_false(&self) -> bool { |
| 626 | if self.csts.is_empty() { |
| 627 | false |
| 628 | } else { |
| 629 | for cst in &self.csts { |
| 630 | if !cst.is_contradiction() { |
| 631 | return false; |
| 632 | } |
| 633 | } |
| 634 | true |
| 635 | } |
| 636 | } |
| 637 | |
| 638 | pub fn is_true(&self) -> bool { |
| 639 | self.csts.is_empty() |
no test coverage detected