(DiscreteDomain<Comparable<?>> domain)
| 185 | } |
| 186 | |
| 187 | @Override |
| 188 | Cut<Comparable<?>> canonical(DiscreteDomain<Comparable<?>> domain) { |
| 189 | try { |
| 190 | return Cut.belowValue(domain.minValue()); |
| 191 | } catch (NoSuchElementException e) { |
| 192 | return this; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | @Override |
| 197 | public int compareTo(Cut<Comparable<?>> o) { |
nothing calls this directly
no test coverage detected