1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
#(C) Graham Ellis, 2005-2006
#####################################################################
InstallGlobalFunction(ModularEquivariantChainMap,
function(R,S,f)
local
HomotopyS, EltsQ,
DimensionR,BoundaryR, EltsG, Mult,
GhomQ, #Let f:G-->Q
GhomQlst,
Charact,
map, mapgens, ChainMap, mapgensRec,
Multmat,
N,m,i,j,g;
if (not "solutionMatBoundaryMatrices" in NamesOfComponents(S) )
and (not "solutionMatBoundaryMatrices" in NamesOfComponents(S) )
then
Print("This function can only be applied to resolutions constructed using ResolutionPrimePowerGroup().\n");
return fail;
fi;
if not
EvaluateProperty(R,"characteristic")= EvaluateProperty(S,"characteristic")
then
Print("This function must be applied to two resolutions of equal characteristic.\n");
return fail;
fi;
Charact:=EvaluateProperty(R,"characteristic");
N:=Minimum(EvaluateProperty(R,"length"),EvaluateProperty(S,"length"));
HomotopyS:=S!.homotopy;
EltsQ:=S!.elts;
DimensionR:=R!.dimension;
BoundaryR:=R!.boundary;
EltsG:=R!.elts;
mapgensRec:=[];
for m in [0..N] do
mapgensRec[m+1]:=[];
for i in [1..DimensionR(m)] do
mapgensRec[m+1][i]:=[];
for g in [1..Length(R!.elts)] do
mapgensRec[m+1][i][g]:=0;
od;
od;
od;
#####################################################################
GhomQ:=function(i)
return Position(EltsQ,Image(f,EltsG[i]));
end;
#####################################################################
GhomQlst:=List([1..Order(R!.group)],GhomQ);
#####################################################################
GhomQ:=function(i)
return GhomQlst[i];
end;
#####################################################################
#####################################################################
Mult:=function(i,j)
return Position(EltsQ,EltsQ[i]*EltsQ[j]);
end;
#####################################################################
if Order(S!.group)<1000 then
Multmat:=[];
for i in [1..Order(S!.group)] do
Multmat[i]:=[];
for j in [1..Order(S!.group)] do
Multmat[i][j]:=Mult(i,j);
od;
od;
#####################################################################
Mult:=function(i,j)
return Multmat[i][j];
end;
#####################################################################
fi;
#####################################################################
mapgens:=function(x,m)
local z,u,a,y;
if mapgensRec[m+1][AbsoluteValue(x[1])][x[2]]=0 then
if x[2]>1 then
y:=ShallowCopy(mapgens([x[1],1],m));
Apply(y,b->[b[1],Mult(GhomQ(x[2]),b[2])]);
if x[1]>0 then mapgensRec[m+1][AbsoluteValue(x[1])][x[2]]:=y;
else
mapgensRec[m+1][AbsoluteValue(x[1])][x[2]]:=NegateWord(y);
fi;
return y;
fi;
if m=0 then
u:=[[SignInt(x[1]),GhomQ(x[2])]];
if x[1]>0 then
mapgensRec[m+1][x[1]][x[2]]:=u;
else
mapgensRec[m+1][AbsoluteValue(x[1])][x[2]]:=NegateWord(u);
fi;
return u;
fi;
if m>0 then y:=StructuralCopy(BoundaryR(m,x[1]));
z:=map(y,m-1);
u:=[];
##########################
for a in Collected(z) do
Append(u,MultiplyWord(a[2] mod Charact,
List(HomotopyS(m-1,a[1]), t->[t[1],Mult(GhomQ(x[2]),t[2])])
));
od;
#########################
u:=AlgebraicReduction(u,Charact);
if x[1]>0 then
mapgensRec[m+1][x[1]][x[2]]:=u;
else
mapgensRec[m+1][AbsoluteValue(x[1])][x[2]]:=NegateWord(u);
fi;
return u;
fi;
else if x[1]>0 then return mapgensRec[m+1][AbsoluteValue(x[1])][x[2]];
else return NegateWord(mapgensRec[m+1][AbsoluteValue(x[1])][x[2]]); fi;
fi;
end;
#####################################################################
#####################################################################
map:=function(w,m)
local a, u,v,x,y,z;
#v:=Concatenation(List(w,x->mapgens(x,m)));
v:=Collected(w);
Apply(v,x->MultiplyWord(x[2] mod Charact, mapgens(x[1],m)));
v:= Concatenation(v);
return AlgebraicReduction(v,Charact);
end;
#####################################################################
return Objectify(HapEquivariantChainMap,
rec(
source:=R,
target:=S,
mapping:=map,
properties:=
[["type","equivariantChainMap"],
["characteristic",Charact] ]));
end);
#####################################################################
|