Skip to content
Snippets Groups Projects
Commit 804db7e1 authored by Ulrich Thiel's avatar Ulrich Thiel
Browse files

Forgot to add data for G31

parent e7ede408
Branches
Tags
No related merge requests found
Source diff could not be displayed: it is stored in LFS. Options to address this: view the blob.
File added
File added
......@@ -5,10 +5,11 @@
# of type G(m,p,n) or a 1-element array for an exceptional group.
groups := [ ];
# List of exceptionals
for i in [4..37] do
Append(groups, [[i]]);
od;
#Symmetric groups
for n in [2..8] do Append(groups, [[1,1,n]]); od;
# Exceptional groups
# for n in [4..37] do Append(groups, [[n]]); od;
# Groups for which we don't export representations (because too big or
# unknown).
......
// Import complex reflection group from GAP3_Data into CHAMP database.
// Run via ../../champ ComplexReflectionGroupImport.m
// Enter groups here (same conventions as in import script).
groups := [];
// Enter GAP3 version here (for database info).
GAP_ver := "gap3-jm 28 jan 21";
// List of exceptionals
for i in {31} do
Append(~groups, [i]);
end for;
// Enter groups here (same conventions as in import script).
groups := [];
// Symmetric groups
groups := [ [1,1,n] : n in [2..8] ];
// No changes from here on
E := func<n | RootOfUnity(n)>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment