(self, dec, prec)
| 406 | return abs(a - b) |
| 407 | |
| 408 | def standard_ulp(self, dec, prec): |
| 409 | return _dec_from_triple(0, '1', dec._exp+len(dec._int)-prec) |
| 410 | |
| 411 | def rounding_direction(self, x, mode): |
| 412 | """Determine the effective direction of the rounding when |
no test coverage detected