File: README.md

package info (click to toggle)
polymake 4.14-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 35,888 kB
  • sloc: cpp: 168,933; perl: 43,407; javascript: 31,575; ansic: 3,007; java: 2,654; python: 632; sh: 268; xml: 117; makefile: 61
file content (26 lines) | stat: -rw-r--r-- 933 bytes parent folder | download | duplicates (6)
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
# PermLib

## Overview

PermLib is a C++ library for permutation computations. 
Currently it features the following operations:

* base and strong generating set (BSGS) construction
* set stabilizers and are-in-same-orbit checks
* lexicographically least set of an orbit
* block systems and primitivity
* very basic group type recognitions
* specializations for direct products of symmetric groups

It is distributed under a BSD license.

## Usage

PermLib is implemented in C++ header files only and makes extensive use of [Boost](http://www.boost.org).
The unit tests and examples can be built with [CMake](http://www.cmake.org).

At the moment there are two different kinds of high-level APIs:
* function based, in *permlib_api.h* (example in *examples/api-example.cpp*)
* class based, in *abstract_permutation_group.h* (no example yet)

More information can be found at http://www.math.uni-rostock.de/~rehn/software/permlib.html