Skip to content
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

Bug in GBNP? #15

Closed
klauslux opened this issue Apr 25, 2020 · 2 comments · Fixed by #34
Closed

Bug in GBNP? #15

klauslux opened this issue Apr 25, 2020 · 2 comments · Fixed by #34
Labels
bug Something isn't working

Comments

@klauslux
Copy link

klauslux commented Apr 25, 2020

The following causes an error in GBNP (GAP 4.10.2):

LoadPackage("gbnp");
A:=FreeAssociativeAlgebraWithOne(Rationals,"a","b");
a:=A.1;
b:=A.2;
rels := [
  a^3, a^2*b, a*b^2+a^2, b*a^2, a^3+b^2+b*a, a*b^2+a*b*a, b*a*b+b*a^2, b^2*a+b*a^2,
  b^3+b*a^2, a^2*b*a, a*b*a^2, b*a^2*b
];
l:=List(rels,x->GP2NP(x));
Grobner(l);
Error, List Element: <list>[13] must have an assigned value in ...
@klauslux

This comment has been minimized.

@klauslux
Copy link
Author

replacing rels[6] by rels[6] - rels[3] will avoid the bug. (rels[6] and rels[3] have the same
leading term)

@fingolfin fingolfin added the bug Something isn't working label May 28, 2021
@fingolfin fingolfin linked a pull request Jul 4, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants