On Thu, Jun 05, 2008 at 10:54:28AM -0700, Moritz Lenz wrote: > Rakudo as of r28105 suffers from low precision in its exp() function. > rakudo: > > > say exp(5) - 148.4131591025766 > 0.000159103
Actually, the problem was low precision in the 148.4131591025766 constant, which Parrot was truncating to 148.413 in the PIR source. Now fixed in r28106. Pm