• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-5,8585,066

examples/H03-May-2022-58,54958,412

gap/H03-May-2022-12,04611,082

src/H03-May-2022-1,5801,142

tst/H03-May-2022-1,1601,045

.mailmapH A D03-May-2022310 33

CHANGESH A D03-May-20229.9 KiB252217

LICENSEH A D03-May-202234.3 KiB675553

Makefile.inH A D03-May-20223.4 KiB11645

PackageInfo.gH A D03-May-20226.3 KiB176159

README.mdH A D03-May-20221.9 KiB5640

TODOH A D03-May-2022899 4228

configureH A D03-May-2022885 3627

init.gH A D03-May-20222 KiB5550

makedoc.gH A D03-May-2022341 118

read.gH A D03-May-20221.2 KiB3632

README.md

1[![Build Status](https://travis-ci.org/gap-packages/orb.svg?branch=master)](https://travis-ci.org/gap-packages/orb)
2[![Code Coverage](https://codecov.io/github/gap-packages/orb/coverage.svg?branch=master&token=)](https://codecov.io/gh/gap-packages/orb)
3
4# orb -- GAP package providing methods to enumerate orbits
5
6## Installation
7
8To get the newest version of this GAP 4 package download from
9<https://gap-packages.github.io/orb/> the archive file
10    orb-x.x.tar.gz
11and unpack it using
12    tar xvzf orb-x.x.tar.gz
13
14Do this in a directory called `pkg`, preferably (but not necessarily)
15in the `pkg` subdirectory of your GAP 4 installation. It creates a
16subdirectory called `orb`.
17
18To install this package do
19
20    cd orb
21    ./configure
22
23If you installed orb in another directory than the usual `pkg`
24subdirectory, do
25    ./configure --with-gaproot=path
26where `path` is a path to the main GAP root directory.
27See
28    ./configure --help
29for further options.
30
31Afterwards call `make` to compile a binary file.
32
33The package  will not work without  this  step.
34
35If you installed the package in another 'pkg' directory than the standard
36'pkg' directory in your GAP 4 installation, then you have to add the path
37to the directory containing your 'pkg' directory to GAP's list of directories.
38This can be done by starting GAP with the '-l' command line option
39followed by the name of the directory and a semicolon. Then your directory
40is prepended to the list of directories searched. Otherwise the package
41is not found by GAP. Of course, you can add this option to your GAP
42startup script.
43
44## Documentation
45
46You can read the documentation online at
47  <https://gap-packages.github.io/orb/doc/chap0.html>
48
49You can also access it from within GAP by entering `?orb` on the GAP
50prompt.
51
52## Bug reports
53
54Please submit bug reports, feature requests and suggestions via our
55issue tracker at <https://github.com/gap-packages/orb/issues>.
56