You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> a =DecoratedInterval(big(2), big(3), com)
[2, 3]₂₅₆
julia>showall(a) # wrong
[2, 3]₂₅₆
julia>displaymode(format=:midpoint) # wrong
julia> a
nothing
format=:full is "correct":
julia> a
DecoratedInterval(Interval(2.000000000000000000000000000000000000000000000000000000000000000000000000000000, 3.000000000000000000000000000000000000000000000000000000000000000000000000000000), com)
However, it does not have the desired effect of being able to copy and paste this into the REPL.
This would require the output to have big"2.000000000000000000000000000000000000000000000000000000000000000000000000000000"
The text was updated successfully, but these errors were encountered:
format=:full
is "correct":However, it does not have the desired effect of being able to copy and paste this into the REPL.
This would require the output to have
big"2.000000000000000000000000000000000000000000000000000000000000000000000000000000"
The text was updated successfully, but these errors were encountered: