1SetPackageInfo( rec(
2PackageName := "loops",
3Subtitle := "Computing with quasigroups and loops in GAP",
4Version := "3.4.1",
5Date := "06/11/2018",
6
7Persons := [
8  rec(
9    LastName      := "Nagy",
10    FirstNames    := "Gábor",
11    IsAuthor      := true,
12    IsMaintainer  := true,
13    Email         := "nagyg@math.u-szeged.hu",
14    WWWHome       := "http://www.math.u-szeged.hu/~nagyg/",
15    PostalAddress := Concatenation( [
16                       "Bolyai Institute, University of Szeged\n",
17                       "6725 Szeged, Aradi vertanuk tere 1\n",
18                       "Hungary" ] ),
19    Place         := "Szeged",
20    Institution   := "University of Szeged"
21  ),
22  rec(
23    LastName      := "Vojtěchovský",
24    FirstNames    := "Petr",
25    IsAuthor      := true,
26    IsMaintainer  := true,
27    Email         := "petr@math.du.edu",
28    WWWHome       := "http://www.math.du.edu/~petr/",
29    PostalAddress := Concatenation( [
30                       "Department of Mathematics, University of Denver\n",
31                       "2280 S. Vine Street\n",
32                       "Denver, CO 80208\n",
33                       "USA" ] ),
34    Place         := "Denver",
35    Institution   := "University of Denver"
36  ),
37],
38
39Status := "accepted",
40CommunicatedBy := "Leonard Soicher (QMUL)",
41AcceptDate := "05/2015",
42
43PackageWWWHome  := "https://gap-packages.github.io/loops/",
44README_URL      := Concatenation( ~.PackageWWWHome, "README" ),
45PackageInfoURL  := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
46SourceRepository := rec(
47    Type := "git",
48    URL := "https://github.com/gap-packages/loops",
49),
50IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
51ArchiveURL      := Concatenation( ~.SourceRepository.URL,
52                                 "/releases/download/v", ~.Version,
53                                 "/loops-", ~.Version ),
54ArchiveFormats := ".tar.gz",
55
56AbstractHTML := Concatenation(
57"The LOOPS package provides researchers in nonassociative algebra ",
58"with a computational tool that integrates standard notions ",
59"of loop theory with libraries of loops and group-theoretical ",
60"algorithms of GAP. The package also expands GAP toward ",
61"nonassociative structures."
62),
63
64PackageDoc := rec(
65  BookName  := "loops",
66  ArchiveURLSubset := ["doc"],
67  HTMLStart := "doc/chap0_mj.html",
68  PDFFile   := "doc/manual.pdf",
69  SixFile   := "doc/manual.six",
70  LongTitle := "The LOOPS Package: Loops and quasigroups for GAP",
71  Autoload  := true     # only for the documentation, TEMPORARILY TURNED OFF
72),
73
74Dependencies := rec(
75  GAP := ">=4.8",
76  NeededOtherPackages := [],
77  SuggestedOtherPackages := [],
78  ExternalConditions := []
79),
80
81AvailabilityTest := ReturnTrue,
82TestFile := "tst/testall.g",
83Keywords := ["loop", "quasigroup", "latin square",
84    "multiplication group", "inner mapping group",
85    "Moufang loop", "Bol loop", "conjugacy closed loop", "automorphic loop", "Steiner loop",
86    "triality", "isomorphism of loops", "isotopism of loops"],
87
88AutoDoc := rec(
89    TitlePage := rec(
90        Title := "The LOOPS Package",
91        Abstract := ~.AbstractHTML,
92        Copyright := """
93<Index>License</Index>
94&copyright; 2005-2017 Gábor P. Nagy and Petr Vojtěchovský.<P/>
95The &LOOPS; package is free software;
96you can redistribute it and/or modify it under the terms of the
97<URL Text="GNU General Public License">https://www.fsf.org/licenses/gpl.html</URL>
98as published by the Free Software Foundation; either version 2 of the License,
99or (at your option) any later version.
100""",
101        Acknowledgements := """
102We thank the following people for sending us remarks and comments, and
103for suggesting new functionality of the package: Muniru Asiru, Bjoern
104Assmann, Andreas Distler, Ale&#353; Dr&#225;pal, Graham Ellis, Steve
105Flammia, Kenneth W. Johnson, Michael K. Kinyon, Alexander Konovalov,
106Frank L&#252;beck, Jonathan D.H. Smith, David Stanovsk&#253; and Glen
107Whitney.
108
109<P/>The library of Moufang loops of order 243 was generated from data
110provided by Michael C. Slattery and Ashley L. Zenisek. The library of
111right conjugacy closed loops of order less than 28 was generated from
112data provided by Katharina Artic. The library of right Bruck loops of
113order 27, 81 was obtained jointly with Izabella Stuhl.
114
115<P/>Gábor P. Nagy was supported by OTKA grants F042959 and T043758, and
116Petr Vojtěchovský was supported by the 2006 and 2016 University of
117Denver PROF grants and the Simons Foundation Collaboration Grant 210176.
118""",
119    ),
120),
121
122));
123