Skip to content

Commit

Permalink
src/sage/symbolic/integration/integral.py: fix giac integral output
Browse files Browse the repository at this point in the history
Now that libgiac is being used for "giac" integrals, one test is
printing out "No checks were made for singular points of
antiderivative -1/sageVARx for definite integration in [1,+infinity]"
where previously the test was silent. We now "..." the junk away.
  • Loading branch information
orlitzky committed Dec 4, 2024
1 parent f384ef5 commit 09572b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sage/symbolic/integration/integral.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,9 @@ def __init__(self):
sage: ex = 1/max_symbolic(x, 1)**2
sage: integral(ex, x, 0, 2, algorithm='giac')
3/2
sage: integral(1/max_symbolic(x, 1)**2, x, 0, oo, algorithm='giac')
sage: result = integral(1/max_symbolic(x, 1)**2, x, 0, oo, algorithm='giac')
...
sage: result
2
"""
# The automatic evaluation routine will try these integrators
Expand Down

0 comments on commit 09572b1

Please sign in to comment.