Skip to content

Commit

Permalink
Fix testall.tst
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyquiver committed Jun 13, 2024
1 parent 301a68e commit 757864a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tst/testall.tst
Original file line number Diff line number Diff line change
Expand Up @@ -1108,15 +1108,21 @@ gap> Q := Quiver(6,[[2,1,"aa"],[3,2,"bb"],[1,4,"cc"],[4,2,"dd"],[3,5,"ee"],[5,4,
gap> kQ := PathAlgebra(Rationals,Q);
<Rationals[<quiver with 6 vertices and 9 arrows>]>
gap> AssignGeneratorVariables(kQ);
#I Global variable `v1' is already defined and will be overwritten
#I Global variable `v2' is already defined and will be overwritten
#I Global variable `v3' is already defined and will be overwritten
#I Global variable `aa' is already defined and will be overwritten
#I Global variable `dd' is already defined and will be overwritten
#I Assigned the global variables [ v1, v2, v3, v4, v5, v6, aa, bb, cc, dd, ee, ff, gg, hh, ii ]
gap> rel := [aa*cc, cc*dd, dd*aa, ee*ff, ff*gg, gg*hh, hh*ii];
[ (1)*aa*cc, (1)*cc*dd, (1)*dd*aa, (1)*ee*ff, (1)*ff*gg, (1)*gg*hh, (1)*hh*ii ]
gap> I := Ideal(kQ,rel);
<two-sided ideal in <Rationals[<quiver with 6 vertices and 9 arrows>]>, (7 generators)>
<two-sided ideal in <Rationals[<quiver with 6 vertices and 9 arrows>]>,
(7 generators)>
gap> A := kQ/I;
<Rationals[<quiver with 6 vertices and 9 arrows>]/
<two-sided ideal in <Rationals[<quiver with 6 vertices and 9 arrows>]>, (7 generators)>>
gap>
<two-sided ideal in <Rationals[<quiver with 6 vertices and 9 arrows>]>,
(7 generators)>>
gap> Q := Quiver(6,[[2,1,"aaa"],[1,3,"bbb"],[3,2,"ccc"],[1,5,"ddd"],[2,6,"eee"],[3,4,"fff"],[4,5,"ggg"],[5,6,"hhh"],[6,4,"iii"]]);
<quiver with 6 vertices and 9 arrows>
gap> kQ := PathAlgebra(Rationals,Q);
Expand Down

0 comments on commit 757864a

Please sign in to comment.