(DiscreteDomain<Comparable<?>> domain)
| 179 | } |
| 180 | |
| 181 | @Override |
| 182 | Cut<Comparable<?>> canonical(DiscreteDomain<Comparable<?>> domain) { |
| 183 | try { |
| 184 | return Cut.<Comparable<?>>belowValue(domain.minValue()); |
| 185 | } catch (NoSuchElementException e) { |
| 186 | return this; |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | @Override |
| 191 | public int compareTo(Cut<Comparable<?>> o) { |
nothing calls this directly
no test coverage detected