#10550: integration not working
------------------------+---------------------------------------------------
Reporter: mariah | Owner: burcin
Type: defect | Status: new
Priority: minor | Milestone: sage-4.6.2
Component: calculus | Keywords:
Author: | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
------------------------+---------------------------------------------------
Comment(by was):
The reason this is *broken* is because the implementation of the method
_evalf_ in sage/symbolic/integration/integral.py in DefiniteIntegral
completely ignores the parent and the precision of a and b. This function
has to be rewritten to take into account the precision of the inputs:
{{{
def _evalf_(self, f, x, a, b, parent=None):
from sage.gsl.integration import numerical_integral
return numerical_integral(f, a, b)[0]
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/10550#comment:3>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.