Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
add 32-bit known bug tags
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveWitteMorris authored and mkoeppe committed Apr 17, 2021
1 parent 6bf6ec0 commit 296d4c7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sage/symbolic/expression.pyx
Expand Up @@ -4880,15 +4880,17 @@ cdef class Expression(CommutativeRingElement):
sage: a,b,c,d = var("a b c d")
sage: ((a + b + c)^30 * (3*b + d - 5/d)^3).expand().subs(a=0,b=2,c=-1)
d^3 + 18*d^2 + 93*d - 465/d + 450/d^2 - 125/d^3 + 36
d^3 + 18*d^2 + 93*d - 465/d + 450/d^2 - 125/d^3 + 36 # 64-bit
d^3 + 18*d^2 + 93*d - 465/d + 450/d^2 - 125/d^3 + 36 # 32-bit # known bug (#31585)
Check that :trac:`31411` is fixed::
sage: q, j = var("q, j")
sage: A = q^(2/3) + q^(2/5)
sage: B = product(1 - q^j, j, 1, 31) * q^(1/24)
sage: bool((A * B).expand() == (A * B.expand()).expand())
True
True # 64-bit
True # 32-bit # known bug (#31585)
"""
if side is not None:
if not is_a_relational(self._gobj):
Expand Down

0 comments on commit 296d4c7

Please sign in to comment.