From 9cb58077cc79f10d78f33f657de56fc33ad857b9 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Mon, 18 Jul 2022 19:47:21 -0700 Subject: [PATCH] src/sage/rings/polynomial/hilbert.pyx: Final fix for the 32-bit result --- src/sage/rings/polynomial/hilbert.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/rings/polynomial/hilbert.pyx b/src/sage/rings/polynomial/hilbert.pyx index da5c06f01d8..0f432de9415 100644 --- a/src/sage/rings/polynomial/hilbert.pyx +++ b/src/sage/rings/polynomial/hilbert.pyx @@ -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)