Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
doc/*.aux
doc/*.bbl
doc/*.bib
#doc/*.bib
doc/*.blg
doc/*.brf
doc/*.css
Expand Down
36 changes: 27 additions & 9 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,29 @@ Persons := [
Place := "Stuttgart",
Institution := "University of Stuttgart",
),
rec(
FirstNames := "Alia",
LastName := "Bonnet",
Email := "alia.bonnet@rwth.aachen.de",
IsAuthor := false,
IsMaintainer := true,
Place := "Aachen",
Institution := "RWTH Aachen"
)
],

#SourceRepository := rec( Type := "TODO", URL := "URL" ),
#IssueTrackerURL := "TODO",
PackageWWWHome := "https://pnp.mathematik.uni-stuttgart.de/idsr/idsr1/geckmf/frobenius.g/",
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
ArchiveURL := Concatenation( ~.PackageWWWHome,
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",
ArchiveFormats := ".tar.gz .tar.bz2",

## Status information. Currently the following cases are recognized:
## "accepted" for successfully refereed packages
Expand All @@ -48,7 +60,13 @@ ArchiveFormats := ".tar.gz",
##
Status := "dev",

AbstractHTML := "",
AbstractHTML :=
"This package computes maximal vectors, the Frobenius normal form and\
the Jordan-Chevalley decomposition of a (square) matrix over any field\
that is available in GAP. In particular, it extends the already\
existing GAP function 'MininmalPolynomial' by computing also a vector\
whose local minimal polynomial is equal to the minimal polynomial of a\
given matrix.",

BannerString := Concatenation(
"──────────────────────────────────────────────────────────────────────────\n",
Expand Down
1 change: 1 addition & 0 deletions doc/clean
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rm -f *.{aux,lab,log,dvi,ps,pdf,bbl,ilg,ind,idx,out,html,tex,pnr,txt,blg,toc,six,brf}
49 changes: 49 additions & 0 deletions doc/nofoma.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
@article{Gec20,
title = {On Jacob’s construction of the rational canonical form of a matrix},
volume = {36},
ISSN = {1081-3810},
url = {http://dx.doi.org/10.13001/ela.2020.5055},
DOI = {10.13001/ela.2020.5055},
number = {36},
journal = {The Electronic Journal of Linear Algebra},
publisher = {University of Wyoming Libraries},
author = {Geck, Meinolf},
year = {2020},
month = apr,
pages = {177–182}
}

@misc{Bon14,
doi = {10.48550/ARXIV.1410.1683},
url = {https://arxiv.org/abs/1410.1683},
author = {Bongartz, Klaus},
keywords = {Representation Theory (math.RT), FOS: Mathematics, FOS: Mathematics, 15A21},
title = {A direct approach to the rational normal form},
publisher = {arXiv},
year = {2014},
copyright = {arXiv.org perpetual, non-exclusive license}
}

@article{Neu08,
title = {Computing Minimal Polynomials of Matrices},
volume = {11},
ISSN = {1461-1570},
url = {http://dx.doi.org/10.1112/S1461157000000590},
DOI = {10.1112/s1461157000000590},
journal = {LMS Journal of Computation and Mathematics},
publisher = {Wiley},
author = {Neunhöffer, Max and Praeger, Cheryl E.},
year = {2008},
pages = {252–279}
}

@misc{Gec22,
doi = {10.48550/ARXIV.2205.05432},
url = {https://arxiv.org/abs/2205.05432},
author = {Geck, Meinolf},
keywords = {Rings and Algebras (math.RA), FOS: Mathematics, FOS: Mathematics},
title = {On the Jordan--Chevalley decomposition of a matrix},
publisher = {arXiv},
year = {2022},
copyright = {arXiv.org perpetual, non-exclusive license}
}
Loading