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

Commit

Permalink
src/sage/rings/polynomial/hilbert.pyx: Final fix for the 32-bit result
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Jul 19, 2022
1 parent 6e9222d commit 9cb5807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/rings/polynomial/hilbert.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ def hilbert_poincare_series(I, grading=None):
sage: J.hilbert_numerator(algorithm='singular')
120*t^33 - 3465*t^32 + 48180*t^31 - 429374*t^30 + 2753520*t^29 - 13522410*t^28 + 52832780*t^27 - 168384150*t^26 + 445188744*t^25 - 987193350*t^24 + 1847488500*t^23 + 1372406746*t^22 - 403422496*t^21 - 8403314*t^20 - 471656596*t^19 + 1806623746*t^18 + 752776200*t^17 + 752776200*t^16 - 1580830020*t^15 + 1673936550*t^14 - 1294246800*t^13 + 786893250*t^12 - 382391100*t^11 + 146679390*t^10 - 42299400*t^9 + 7837830*t^8 - 172260*t^7 - 468930*t^6 + 183744*t^5 - 39270*t^4 + 5060*t^3 - 330*t^2 + 1 # 64-bit
120*t^33 - 3465*t^32 + 48180*t^31 - ... # 32-bit
...120*t^33 - 3465*t^32 + 48180*t^31 - ... # 32-bit
"""
cdef Polynomial_integer_dense_flint HP
HP, grading = first_hilbert_series(I, grading=grading, return_grading=True)
Expand Down

0 comments on commit 9cb5807

Please sign in to comment.