RepnDecomp
RepnDecomp: A GAP package for decomposing linear representations of finite groups - Published in JOSS (2020)
Science Score: 95.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 2 DOI reference(s) in README and JOSS metadata -
✓Academic publication links
Links to: arxiv.org, joss.theoj.org -
✓Committers with academic emails
2 of 8 committers (25.0%) from academic institutions -
○Institutional organization owner
-
✓JOSS paper metadata
Published in Journal of Open Source Software
Keywords
Repository
Decompose representations of finite groups into irreducibles
Basic Info
- Host: GitHub
- Owner: gap-packages
- License: gpl-3.0
- Language: GAP
- Default Branch: master
- Homepage: https://gap-packages.github.io/RepnDecomp
- Size: 940 KB
Statistics
- Stars: 10
- Watchers: 9
- Forks: 2
- Open Issues: 3
- Releases: 6
Topics
Metadata Files
README.md
Computing decompositions of representations
Overview
The main function of this package is to compute the decomposition of a representation ρ, of a finite group G over the complex numbers into irreducibles, as well as the corresponding decomposition of the centraliser of R.
While methods for doing this were well known before this package was written (cf. Serre's book "Linear Representations of Finite Groups"), there were no open-source computer programs that implemented these methods, nor were details on how to achieve good performance of such an implementation published.
This package is useful in, for example, semidefinite programming and optimisation/feasibility problems involving coding theory, graph theory, algebraic geometry, combinatorics and more (see https://arxiv.org/abs/1007.2905 for more examples of possible applications). Specifically, it allows to achieve substantial reductions in the dimension of these problems; potentially known results, e.g. on upper bounds on sizes of nonlinear codes, could be improved with the functions implemented in this package.
This package was written as part of my (Kaashif Hymabaccus's) Master's degree at the University of Oxford, supervised by Dmitrii Pasechnik.
Installation
Make sure that, when you install GAP, you installed all of the packages! Our package uses GRAPE and IO for some functions.
Latest version included with GAP
If you have version 4.11.0 or later of the GAP system installed, you do not have to install RepnDecomp manually since it is already distributed with GAP.
Latest released version
If you would like the latest released version of RepnDecomp, and there has not yet been a release of GAP including it, then you can download the latest release here.
Create the directory ~/.gap/pkg, which will contain your local
packages and extract the archive you downloaded into it. For example:
$ mkdir -p ~/.gap/pkg
$ tar -C ~/.gap/pkg -xvzf RepnDecomp-1.1.0.tar.gz
Development version
If you would like to install the latest code directly from git master
(unsuitable for anything but development of this package), then you
can clone this repo directly into ~/.gap/pkg:
$ mkdir -p ~/.gap/pkg
$ cd ~/.gap/pkg
$ git clone https://github.com/gap-packages/RepnDecomp.git
Post-installation
Now, you can run GAP however you like, load the package and use the functions provided:
$ gap
<some output>
gap> LoadPackage("RepnDecomp");
───────────────────────────────────────────────────────────────────────────────
Loading GRAPE 4.8.2 (GRaph Algorithms using PErmutation groups)
by Leonard H. Soicher (http://www.maths.qmul.ac.uk/~lsoicher/).
Homepage: https://gap-packages.github.io/grape
Report issues at https://github.com/gap-packages/grape/issues
───────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────────────────────────────────────────────
Loading RepnDecomp 0.1 (Decompose representations of finite groups into irreducibles)
by Kaashif Hymabaccus (https://kaashif.co.uk).
with contributions by:
Dmitrii Pasechnik.
Homepage: http://gitlab.com/kaashif/decomp/
───────────────────────────────────────────────────────────────────────────────
true
gap> A := IdentityMat(5);
[ [ 1, 0, 0, 0, 0 ], [ 0, 1, 0, 0, 0 ], [ 0, 0, 1, 0, 0 ], [ 0, 0, 0, 1, 0 ],
[ 0, 0, 0, 0, 1 ] ]
gap> B := LDLDecomposition(A);
rec( D := [ 1, 1, 1, 1, 1 ],
L := [ [ 1, 0, 0, 0, 0 ], [ 0, 1, 0, 0, 0 ], [ 0, 0, 1, 0, 0 ],
[ 0, 0, 0, 1, 0 ], [ 0, 0, 0, 0, 1 ] ] )
Where LDLDecomposition is a function provided by this package.
Testing
Make sure your current directory is this repo, for example:
$ git clone https://github.com/gap-packages/RepnDecomp.git
$ cd RepnDecomp
First, generate the tests from the documentation:
$ gap -q < makedoc.g
To run the tests, make sure you have all needed packages installed (GRAPE and also IO if you want to compute in parallel).
$ gap tst/testall.g
This will run all tests and (hopefully) pass. In order for the tests to be as useful as possible to me i.e. catch as many bugs as possible, there is a lot of randomness in them. This means that sometimes the tests pick a pathologically bad example to decompose which causes the tests to hang forever. The tests will be fixed to be more deterministic.
Documentation
There's a GAPDoc documentation book hosted
here. This
is generated from the source files and comments in the lib/
directory of this repo, so you can also look there for the same
information.
There are also some examples in the examples directory, which are
embedded in the manual, but the most complete examples are in the
old_tst directory. These are the old, poorly documented, but
essentially complete tests. They are being converted into nicer
looking tests that can be embedded into the manual, but this could
take some time.
Paper
This package is described in a freely available paper in Journal of Open Source Software.
Contributing
Open a pull request or issue in this repository. You can also email me directly, I'll be more likely to notice an email.
Owner
- Name: GAP packages
- Login: gap-packages
- Kind: organization
- Website: https://gap-packages.github.io/
- Repositories: 160
- Profile: https://github.com/gap-packages
A collection of packages for GAP, a system for computational discrete algebra
JOSS Publication
RepnDecomp: A GAP package for decomposing linear representations of finite groups
Tags
mathematics groups representationsGitHub Events
Total
- Issues event: 1
- Issue comment event: 22
- Push event: 2
Last Year
- Issues event: 1
- Issue comment event: 22
- Push event: 2
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Kaashif Hymabaccus | k****f@k****k | 392 |
| Max Horn | m****x@q****e | 14 |
| Dima Pasechnik | d****e@g****m | 8 |
| shpectorov | s****v@b****k | 2 |
| Wilf Wilson | w****f@w****t | 1 |
| Kyle Niemeyer | k****r@f****m | 1 |
| Alexander Konovalov | a****v | 1 |
| Alexander Konovalov | a****k@m****k | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 11
- Total pull requests: 10
- Average time to close issues: 6 months
- Average time to close pull requests: 3 days
- Total issue authors: 6
- Total pull request authors: 5
- Average comments per issue: 3.45
- Average comments per pull request: 2.1
- Merged pull requests: 10
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- dimpase (5)
- hongyi-zhao (3)
- olexandr-konovalov (1)
- kaashif (1)
- wilfwilson (1)
- fingolfin (1)
Pull Request Authors
- fingolfin (5)
- olexandr-konovalov (2)
- dimpase (1)
- kyleniemeyer (1)
- wilfwilson (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- actions/checkout v3 composite
- actions/upload-artifact v3 composite
- codecov/codecov-action v3 composite
- gap-actions/build-pkg v1 composite
- gap-actions/build-pkg-docs v1 composite
- gap-actions/process-coverage v2 composite
- gap-actions/run-pkg-tests v2 composite
- gap-actions/setup-gap v2 composite
