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

GBNP bugs #20

Open
erich-9 opened this issue Sep 29, 2018 · 0 comments
Open

GBNP bugs #20

erich-9 opened this issue Sep 29, 2018 · 0 comments

Comments

@erich-9
Copy link
Contributor

erich-9 commented Sep 29, 2018

There seem to be some bugs in the GBNP package. I reported them about four month ago, but didn't get any response so far. Below you can find two QPA examples that use the following path algebra:

Q := Quiver(1, [ [1,1,"a"], [1,1,"b"] ]);
KQ := PathAlgebra(Rationals, Q);
AssignGeneratorVariables(KQ);

This first example raises an error because of an out-of-range index:

# set of generators for the ideal < a^3, a^2*b, b*a^2, b*a*b, b*a+b^2, a*b*a-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
];

GBNPGroebnerBasis(rels, KQ);

While this second one gets stuck in an infinite loop:

# set of generators for the ideal < a*b+b*a, a^2+b^2, a^3, a^2*b >
rels := [
  a^2+b^2, a^2*b+b*a^2, a^4, a^3*b, a^2*b*a, a*b*a*b, b*a*b*a, a^3+a^2*b+a*b*a+a*b^2,
  a^2+a*b+b*a+b^2+a^2*b+b*a^2, a^2+a*b+b*a+b^2+a^3+a^2*b+a*b*a+b^2*a,
  a^3+a*b*a+b*a*b+b^3, a^4, a^3*b, a^2*b*a, a*b*a*b, b*a*b*a
];

GBNPGroebnerBasis(rels, KQ);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant