-
Notifications
You must be signed in to change notification settings - Fork 14
Description
Here is a program used in the following to get all indecomposable modules for a Dynkin type path algebra:
DeclareOperation("allindecomposablesdynkin",[IsList]);
InstallMethod(allindecomposablesdynkin, "for a representation of a quiver", [IsList],0,function(LIST)
local A,C,n,injA,W,i,WW,l;
A:=LIST[1];
C:=CoxeterMatrix(A);
n:=Order(C);
injA:=IndecInjectiveModules(A);
W:=[];for i in injA do for l in [0..n] do Append(W,[DTr(i,l)]);od;od;
WW:=Filtered(W,x->Dimension(x)>0);
return(WW);
end);
Here are two errors related to the program PreprojectiveAlgebra:
Q:=DynkinQuiver("A",3,["r","l"]);A:=PathAlgebra(GF(3),Q);C:=CoxeterMatrix(A);n:=Order(C);L:=allindecomposablesdynkin([A]);Size(L);M:=DirectSumOfQPAModules(L);B:=PreprojectiveAlgebra(M,n);
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
Error, no 3rd choice method found for `RadicalOfAlgebra' on 1 arguments called from
RadicalOfAlgebra( A ) at /home/Schreibtisch/gap4r8/pkg/qpa/lib/algebra.gi:681 called from
AlgebraAsQuiverAlgebra( A ) at stdin:21675 called from
<function "unknown">( )
called from read-eval loop at line 21717 of stdin
you can 'quit;' to quit to outer loop, or
you can 'return;' to continue
brk> quit;
Another error:
Q:=DynkinQuiver("A",3,["r","r"]);A:=PathAlgebra(GF(3),Q);C:=CoxeterMatrix(A);n:=Order(C);L:=allindecomposablesdynkin([A]);Size(L);M:=DirectSumOfQPAModules(L);B:=PreprojectiveAlgebra(M,n);
Error, entered map is not a module map between the representations entered, error for vertex number 1 and arrow a_1, called from
RightModuleHomOverAlgebra( B, C, h!.maps ) at /home/Schreibtisch/gap4r8/pkg/qpa/lib/functors.gi:825 called from
TrD( g ) at stdin:9382 called from
TrD( q, i - 1 ) at stdin:21652 called from
<function "unknown">( )
called from read-eval loop at line 21717 of stdin
you can 'quit;' to quit to outer loop, or
you can 'return;' to continue