Skip to content

Commit

Permalink
src/sage/symbolic/integration/integral.py: update expected giac output
Browse files Browse the repository at this point in the history
One "giac" integral in this file has changed its output slightly now
that the "giac" algorithm uses libgiac as opposed to the pexpect
interface. The difference between the new and old expected outputs
full_simplify() to zero, so this one is nothing to worry about.
  • Loading branch information
orlitzky committed Oct 5, 2024
1 parent 439b1b0 commit 119c212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/symbolic/integration/integral.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self):
sage: # needs sage.libs.giac
sage: Ex = (1-2*x^(1/3))^(3/4)/x
sage: integrate(Ex, x, algorithm='giac') # long time
4*(-2*x^(1/3) + 1)^(3/4) + 6*arctan((-2*x^(1/3) + 1)^(1/4)) - 3*log((-2*x^(1/3) + 1)^(1/4) + 1) + 3*log(abs((-2*x^(1/3) + 1)^(1/4) - 1))
4*(-2*x^(1/3) + 1)^(3/4) + 6*arctan((-2*x^(1/3) + 1)^(1/4)) - 3*log(abs((-2*x^(1/3) + 1)^(1/4) + 1)) + 3*log(abs((-2*x^(1/3) + 1)^(1/4) - 1))
Check for :issue:`29833`::
Expand Down

0 comments on commit 119c212

Please sign in to comment.