Quelle PackageInfo.g
Sprache: unbekannt
|
|
#############################################################################
##
## PackageInfo.g for the package `fplsa'
##
SetPackageInfo( rec(
PackageName := "FPLSA",
Subtitle := "Finitely Presented Lie Algebras",
Version := "1.2.7",
Date := "29/08/2025", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Gerdt",
FirstNames := "Vladimir",
IsAuthor := true,
IsMaintainer := false,
Email := "gerdt@jinr.ru",
WWWHome := "http://compalg.jinr.ru/CAGroup/Gerdt/",
),
rec(
LastName := "Kornyak",
FirstNames := "Vladimir",
IsAuthor := true,
IsMaintainer := false,
Email := "vkornyak@gmail.com",
WWWHome := "http://compalg.jinr.ru/CAGroup/Kornyak",
),
rec(
LastName := "Horn",
FirstNames := "Max",
IsAuthor := false,
IsMaintainer := true,
Email := "mhorn@rptu.de",
WWWHome := "https://www.quendi.de/math",
GitHubUsername := "fingolfin",
),
],
Status := "accepted",
CommunicatedBy := "Steve Linton (St Andrews)",
AcceptDate := "07/1999",
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,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"The <span class=\"pkgname\">FPLSA</span> package uses \
the authors' C program (version 4.0) that implements \
a Lie Todd-Coxeter method for converting \
finitely presented Lie algebras into isomorphic \
structure constant algebras. \
This is called via the GAP function IsomorphismSCTableAlgebra.",
PackageDoc := rec(
BookName := "fplsa",
ArchiveURLSubset := [ "doc" ],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Interface to fast external Lie Todd-Coxeter Program",
),
Dependencies := rec(
GAP := ">= 4.8",
NeededOtherPackages := [],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := function()
local path,file;
# test for existence of the compiled binary
path:= DirectoriesPackagePrograms( "fplsa" );
file:= Filename( path, "fplsa4" );
if file = fail then
Info( InfoWarning, 1,
"Package ``fplsa'': The program `fplsa4' is not compiled" );
fi;
return file <> fail;
end,
Keywords := [
"Lie algebra",
"presentation",
"structure constants"
],
TestFile := "tst/testall.g",
));
[ Dauer der Verarbeitung: 0.31 Sekunden
(vorverarbeitet)
]
|
2026-03-28
|