2

In an answer on StackOverflow en Español, I showed that Perl 6 avoids the calculation errors of many other languages because it keeps track of the numerators and denominators. That is to say, decimal numbers are actually represented as Ratios. However, it does make a small error with very small numbers:

> 0.000000000000000000071.nude.perl
(71, 1000000000000000000000)
> 0.0000000000000000000071.nude.perl
(71, 10000000000000000000000)
> 0.00000000000000000000071.nude.perl
(71, 99999999999999991611392)

Is this something that will be fixed in future versions?

I get the same answers using perl6/rakudo-star-2015.09 and perl6/rakudo-star-2015.11

2
  • 4
    That should be an error, or converted to a Num. Rat is supposed to only have up to uint64.Range.max denominator. 18446744073709551615 (20 digits) If you want a Rational with that big of a denominator, use a FatRat. FatRat.new(71,10²³) or 71.FatRat / 10²³ Dec 4, 2015 at 18:02
  • @BradGilbert: +1 - I did not yet see your comment when I wrote my answer :(
    – Christoph
    Dec 4, 2015 at 18:09

1 Answer 1

4

Denominators are supposed to be limited to 64-bit - you need a FatRat to go beyond that.

However, said limit does not appear to be enforced in current Rakudo: If you do so manually, it will happily construct your number via Rat.new(71, 10**23).

My guess would be you have uncovered a bug in the handling of rational literals, but it might only trigger in code that is not future-proof anyway.

edit: It is possible to use angle brackets to get an allomorphic value, and this produces the correct value. In fact, regular rational literals are also specced to fall back to RatStr on overflow.

However, this fallback mechanism does not appear to be implemented in Rakudo.

5
  • 1
    Thanks! Thinking in terms of DWIM, wouldn't we want Perl 6 to just figure out that we need FatRat and use it or is there another underlying issue? Dec 4, 2015 at 18:35
  • 1
    @ChristopherBottoms: Perl6 literals in general are monomorphic and don't DWIM; however, there's the angle brackets syntax <0.5> that does so and likely could be extended to return a FatRatStr instead of a RatStr when appropriate
    – Christoph
    Dec 4, 2015 at 21:30
  • 1
    Sweet! <0.00000000000000000000000000000000000000000000000000000000000000000071>.nude.perl gives (71, 100000000000000000000000000000000000000000000000000000000000000000000) Dec 4, 2015 at 22:51
  • 1
    @ChristopherBottoms:\o/ personally, I expected that both kinds of literal would re-use the same codepath and would show identical behaviour; insert saying about making assumptions at your convenience
    – Christoph
    Dec 4, 2015 at 23:12
  • 1
    The specification is the testsuite known as roast. Everything else is just conjecture. Dec 5, 2015 at 16:56

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.