Krish Agarwal
Krish Agarwal
`@decorated` responds to `setprecision` now Master ``` julia> typeof(@decorated(1, 2)) DecoratedInterval{Float64} julia> setprecision(Interval, 256) 256 julia> typeof(@decorated(1, 2)) DecoratedInterval{Float64} ``` Branch ``` julia> typeof(@decorated(1, 2)) DecoratedInterval{Float64} julia> setprecision(Interval, 256) 256...
There are multiple tests in this file like ``` @interval("10?3e380") == @interval(0x1.fffffffffffffp+1023, Inf) ``` These tests expect `Interval(floatmax(), Inf)` as output when the input(like in the above case) exceeds `floatmax()`....
All the tests from this file except two are passing now. Those 2 tests are failing because it is related to issue #395.
Please do suggest any changes required or any extra additions needed to this PR. Thanks.