-
-
Notifications
You must be signed in to change notification settings - Fork 503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update singular to 4.2.1p3 #32907
Comments
Author: Matthias Koeppe |
Commit: |
New commits:
|
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:4
Build ends with |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:7
Passing |
Branch pushed to git repo; I updated commit sha1. New commits:
|
This comment has been minimized.
This comment has been minimized.
comment:12
This gives errors in the sagelib build:
|
Changed author from Matthias Koeppe to Matthias Koeppe, ... |
Changed branch from u/mkoeppe/update_singular_to_4_2_1p2 to u/arojas/update_singular_to_4_2_1p2 |
Branch pushed to git repo; I updated commit sha1. New commits:
|
comment:18
Builds now, also with older singular (at least as far back as 4.2.0p1). I've also tried to keep tests compatible with older singular, except for the example in |
Changed author from Matthias Koeppe, ... to Matthias Koeppe, Antonio Rojas |
comment:37
If it helps I could try this ticket out For now I can only offer trivial comments I would wrap this long output line: 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
+ 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 or maybe even rewrite that doctest as: - sage: J.hilbert_numerator(algorithm='singular')
+ sage: p = J.hilbert_numerator(algorithm='singular')
+ sage: p.list()
+ [1, 0, -330, 5060, -39270, 183744, -468930, -172260, 7837830,
+ -42299400, 146679390, -382391100, 786893250, -1294246800,
+ 1673936550, -1580830020, 752776200, 752776200, 1806623746,
+ -471656596, -8403314, -403422496, 1372406746, 1847488500,
+ -987193350, 445188744, -168384150, 52832780, -13522410,
+ 2753520, -429374, 48180, -3465, 120] whose output I personally find easier to parse visually. Another wrapping suggestion: - [x + y + 57119*z + 4, y^2 + 3*y + 17220, y*z + ..., 2*y + 158864, z^2 + 17223, 2*z + 41856, 164878]
+ [x + y + 57119*z + 4, y^2 + 3*y + 17220, y*z + ...,
+ 2*y + 158864, z^2 + 17223, 2*z + 41856, 164878] Some pep8 whitespace suggestions (the last two occur several times): - n_Delete(&n,r.cf)
+ n_Delete(&n, r.cf) - p_SetCoeff(newptemp,n_Copy(p_GetCoeff(p,r),r.cf),r)
+ p_SetCoeff(newptemp, n_Copy(p_GetCoeff(p, r), r.cf), r) - p_SetCoeff(p, n_Init(1,_ring.cf), _ring)
+ p_SetCoeff(p, n_Init(1, _ring.cf), _ring) |
Changed keywords from none to upgrade, Singular |
This comment has been minimized.
This comment has been minimized.
comment:38
Cygwin testing would be valuable |
comment:39
Also please feel free to push these edits to the ticket |
comment:40
Setting to blocker because system singular is already being picked up by our spkg-configure |
comment:41
Let's get this in please |
comment:42
4.2.1p3 is out including the commit needed for #32959 |
comment:43
yes, seems like a nice update to get: https://github.com/Singular/Singular/releases/tag/Release-4-2-1p3 |
Changed reviewer from https://github.com/mkoeppe/sage/actions/runs/1485019210, https://github.com/mkoeppe/sage/actions/runs/1485019208 to none |
comment:46
Tests on GH Actions look fine. |
comment:47
lgtm |
Changed reviewer from https://github.com/mkoeppe/sage/actions/runs/1595134485 to Dima Pasechnik |
comment:48
Thanks! |
Changed branch from u/mkoeppe/update_singular_to_4_2_1p2 to |
comment:50
update to 4.3.0 is dealt with on #33160 |
Changed commit from |
From the release notes: update for using FLINT 2.8.x
The FLINT/Singular problem on ubuntu-trusty
will be fixed by this (already merged)
pull request to FLINT:
CC: @dimpase @orlitzky @kiwifb @antonio-rojas @slel
Component: packages: standard
Keywords: upgrade, Singular
Author: Matthias Koeppe, Antonio Rojas
Branch:
0856554
Reviewer: Dima Pasechnik
Issue created by migration from https://trac.sagemath.org/ticket/32907
The text was updated successfully, but these errors were encountered: