(&self)
| 53 | } |
| 54 | |
| 55 | pub fn is_top(&self) -> bool { |
| 56 | self.numerical_domain.is_top() && self.nullness_domain.is_empty() |
| 57 | } |
| 58 | |
| 59 | pub fn leq(&self, other: &Self) -> bool { |
| 60 | self.numerical_domain.leq(&other.numerical_domain) |
no test coverage detected