forked from semigroups/Semigroups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageInfo.g
238 lines (215 loc) · 8.6 KB
/
PackageInfo.g
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
############################################################################
##
#W PackageInfo.g
#Y Copyright (C) 2011-15 James D. Mitchell
##
## Licensing information can be found in the README file of this package.
##
#############################################################################
##
## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "2.8.0">
## <!ENTITY GAPVERS "4.8.3">
## <!ENTITY ORBVERS "4.7.3">
## <!ENTITY IOVERS "4.4.4">
## <!ENTITY GRAPEVERS "4.5">
## <!ENTITY GENSSVERS "1.5">
## <!ENTITY ARCHIVENAME "semigroups-2.8.0">
## <!ENTITY COPYRIGHTYEARS "2011-16">
## <#/GAPDoc>
RecogsFunnyNameFormatterFunction := function(st)
if Length(st) = 0 then
return st;
else
return Concatenation(" (", st, ")");
fi;
end;
RecogsFunnyWWWURLFunction := function(re)
if IsBound(re.WWWHome) then
return re.WWWHome;
else
return "";
fi;
end;
SetPackageInfo( rec(
PackageName := "Semigroups",
Subtitle := "",
Version := "2.8.0",
Date := "26/05/2016",
ArchiveFormats := ".tar.gz",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
),
IssueTrackerURL := Concatenation(~.SourceRepository.URL, "/issues"),
PackageWWWHome := Concatenation("https://gap-packages.github.io/",
~.PackageName),
README_URL := Concatenation(~.PackageWWWHome, "/README.md"),
PackageInfoURL := Concatenation(~.PackageWWWHome, "/PackageInfo.g"),
ArchiveURL := Concatenation(~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", "semigroups-", ~.Version),
Persons := [
rec(
LastName := "Mitchell",
FirstNames := "J. D.",
IsAuthor := true,
IsMaintainer := true,
Email := "jdm3@st-and.ac.uk",
WWWHome := "http://www-groups.mcs.st-andrews.ac.uk/~jamesm/",
PostalAddress := Concatenation( [
"Mathematical Institute,",
" North Haugh,", " St Andrews,", " Fife,", " KY16 9SS,",
" Scotland"] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Delgado",
FirstNames := "M.",
IsAuthor := true,
IsMaintainer := false,
Email := "mdelgado@fc.up.pt",
WWWHome := "http://cmup.fc.up.pt/cmup/mdelgado/",
Place := "Porto",
Institution := "Universidade do Porto"
),
rec(
LastName := "East",
FirstNames := "J.",
IsAuthor := true,
IsMaintainer := false,
Email := "j.east@uws.edu.au",
WWWHome := "http://goo.gl/MuiJu5",
Place := "Sydney",
Institution := "University of Western Sydney"
),
rec(
LastName := "Egri-Nagy",
FirstNames := "A.",
IsAuthor := true,
IsMaintainer := false,
Email := "attila@egri-nagy.hu",
WWWHome := "http://www.egri-nagy.hu",
Place := "Akita, Japan",
Institution := "Akita International University"
),
rec(
LastName := "Ham",
FirstNames := "N.",
IsAuthor := true,
IsMaintainer := false,
Email := "nicholas.charles.ham@gmail.com",
WWWHome := "https://n-ham.github.io",
Place := "Hobart, Tasmania",
Institution := "University of Tasmania"
),
rec(
LastName := "Jonusas",
FirstNames := "J.",
IsAuthor := true,
IsMaintainer := false,
Email := "jj252@st-and.ac.uk",
WWWHome := "http://www-circa.mcs.st-and.ac.uk/~julius/",
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Pfeiffer",
FirstNames := "M.",
IsAuthor := true,
IsMaintainer := false,
Email := "markus.pfeiffer@morphism.de",
WWWHome := "http://www.morphism.de/~markusp/",
PostalAddress := Concatenation( [
"Mathematical Institute,",
" North Haugh,", " St Andrews,", " Fife,", " KY16 9SS,",
" Scotland"] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Steinberg",
FirstNames := "B.",
IsAuthor := true,
IsMaintainer := false,
WWWHome := "http://www.sci.ccny.cuny.edu/~benjamin/",
),
rec(
LastName := "Smith",
FirstNames := "J.",
IsAuthor := true,
IsMaintainer := false,
WWWHome := "http://math.sci.ccny.cuny.edu/people?name=Jhevon_Smith",
),
rec(
LastName := "Torpey",
FirstNames := "M.",
IsAuthor := true,
IsMaintainer := false,
Email := "mct25@st-and.ac.uk",
WWWHome := "http://www-circa.mcs.st-and.ac.uk/~mct25/",
PostalAddress := Concatenation( [
"Mathematical Institute,",
" North Haugh,", " St Andrews,", " Fife,", " KY16 9SS,",
" Scotland"] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Wilson",
FirstNames := "W.",
IsAuthor := true,
IsMaintainer := false,
Email := "waw7@st-and.ac.uk",
WWWHome := "http://wilf.me",
PostalAddress := Concatenation( [
"Mathematical Institute,",
" North Haugh,", " St Andrews,", " Fife,", " KY16 9SS,",
" Scotland"] ),
Place := "St Andrews",
Institution := "University of St Andrews"
)],
Status := "deposited",
AbstractHTML :=
"<p>The <strong class=\"pkg\">Semigroups</strong> package is a <strong class=\"pkg\">GAP</strong> package containing methods for semigroups, monoids, and inverse semigroups, principally of transformations, partial permutations, bipartitions, subsemigroups of regular Rees 0-matrix semigroups, free inverse semigroups, free bands, and semigroups of matrices over finite fields.</p> <p><strong class=\"pkg\">Semigroups</strong> contains more efficient methods than those available in the <strong class=\"pkg\">GAP</strong> library (and in many cases more efficient than any other software) for creating semigroups, monoids, and inverse semigroup, calculating their Green's structure, ideals, size, elements, group of units, small generating sets, testing membership, finding the inverses of a regular element, factorizing elements over the generators, and many more. It is also possible to test if a semigroup satisfies a particular property, such as if it is regular, simple, inverse, completely regular, and a variety of further properties.</p> <p>There are methods for finding congruences of certain types of semigroups, the normalizer of a semigroup in a permutation group, the maximal subsemigroups of a finite semigroup, and smaller degree partial permutation representations of inverse semigroups. There are functions for producing pictures of the Green's structure of a semigroup, and for drawing bipartitions.</p>",
PackageDoc := rec(
BookName := "Semigroups",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Semigroups",
Autoload := true
),
Dependencies := rec(
GAP := ">=4.8.3",
NeededOtherPackages := [["orb", ">=4.7.3"], ["io", ">=4.4.4"]],
SuggestedOtherPackages := [["gapdoc", ">=1.5.1"], ["grape", ">=4.5"],
["genss", ">=1.5"]],
ExternalConditions := []),
BannerString := Concatenation(
"----------------------------------------------------------------------",
"-------\n",
"Loading Semigroups ", ~.Version, "\n",
"by ", ~.Persons[1].FirstNames, " ", ~.Persons[1].LastName,
" (", ~.Persons[1].WWWHome, ")\n",
"with contributions by:\n",
Concatenation(Concatenation(List(~.Persons{[2..Length(~.Persons)-1]},
p->[" ",p.FirstNames," ",p.LastName,
RecogsFunnyNameFormatterFunction(
RecogsFunnyWWWURLFunction(p)),",\n"]))),
" and ",~.Persons[Length(~.Persons)].FirstNames," ",
~.Persons[Length(~.Persons)].LastName,
RecogsFunnyNameFormatterFunction(
RecogsFunnyWWWURLFunction(~.Persons[Length(~.Persons)])),".\n",
"-----------------------------------------------------------------------",
"------\n"
),
AvailabilityTest := ReturnTrue,
Autoload := false,
TestFile := "tst/testinstall.tst",
Keywords := ["transformation semigroups", "partial permutations",
"inverse semigroups", "Green's relations", "free inverse semigroup",
"partition monoid", "bipartitions", "Rees matrix semigroups"]
));