Open dpsanders opened 8 years ago
It would be great to have correctly-rounded basic operations, i.e. be able to fix the rounding mode to RoundDown or RoundUp and do a + b for a::Double{T} and b::Double{T}.
RoundDown
RoundUp
a + b
a::Double{T}
b::Double{T}
I think this can be done by implementing triple-word arithmetic...
It would be great to have correctly-rounded basic operations, i.e. be able to fix the rounding mode to
RoundDown
orRoundUp
and doa + b
fora::Double{T}
andb::Double{T}
.