On 2014-01-31, Volker Braun <[email protected]> wrote: > if its just a matter of the last digit then I'd be satisfied with just > adding a # rel tol 1e-16 or so to the doctest... this is trickier, if I interpret the events right: the numbers spit out by Maxima get rounded by Sage, and .49801139449883153 is rounded as .498011394498832, whereas .4980113944988315 is rounded as .498011394498831
sage: .4980113944988315 0.498011394498831 sage: .49801139449883153 0.498011394498832 So you need to increase tolerance more, and one would naturally object that this is defeating the purpose of doctests... -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-devel. For more options, visit https://groups.google.com/groups/opt_out.
