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