On 2014-06-03, Nils Bruin <[email protected]> wrote: > It means Maxima, which gets used for integration, runs into a problem. > This is because sage instructs maxima to keep floating point values > rather than substitute them with rational or integer values. Apparently > you are hitting a branch in the integration code that doesn't like that.
Agreed with this assessment. As for a workaround -- first thing to try is to replace literal floats with symbols, and then substitute values into the result. Second thing is to avoid floats by replacing them with equivalent rational numbers, e.g., replace 6.02e-23 with 602*10^-25. best Robert Dodier -- You received this message because you are subscribed to the Google Groups "sage-support" 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-support. For more options, visit https://groups.google.com/d/optout.
