Issue with letterplace rings with weighted orderings
mwageringel · Thu Jan 16, 2020 12:04 am
Hi everyone,
when trying to compute Gröbner bases of ideals in letterplace rings with weighted orderings, the computation always fails with an error:
As far as I understand, the computation should not go beyond the degree bound here, but return the result up to the degree bound instead. Any help in resolving this problem would be appreciated.
This came up in Sage trac #25993. Sage wraps an older version of Singular's letterplace functionality which does not exist anymore in the current version of Singular, and I have difficulties making the above example work with the current version of Singular.
Thank you,
Markus
when trying to compute Gröbner bases of ideals in letterplace rings with weighted orderings, the computation always fails with an error:
Code:
LIB "freegb.lib";
ring r = 0,(x,y,z),wp(1,2,3);
def R = freeAlgebra(r, 22);
setring R;
ideal I = x*y+z-y*x, x*y*z-x^6+y^3;
ideal J = twostd(I);
// ? degree bound of Letterplace ring is 22, but at least 23 is needed for this multiplication
ring r = 0,(x,y,z),wp(1,2,3);
def R = freeAlgebra(r, 22);
setring R;
ideal I = x*y+z-y*x, x*y*z-x^6+y^3;
ideal J = twostd(I);
// ? degree bound of Letterplace ring is 22, but at least 23 is needed for this multiplication
As far as I understand, the computation should not go beyond the degree bound here, but return the result up to the degree bound instead. Any help in resolving this problem would be appreciated.
This came up in Sage trac #25993. Sage wraps an older version of Singular's letterplace functionality which does not exist anymore in the current version of Singular, and I have difficulties making the above example work with the current version of Singular.
Thank you,
Markus