Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

565645 views
1
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
%%
3
%W install.tex GAP documentation Christian Sievers
4
%%
5
%Y 2003 - 2016
6
%%
7
8
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9
\Chapter{Installing and loading the FGA package}
10
11
\atindex{Installing and loading the FGA package}{@Installing %
12
and loading the {\FGA} package|indexit}
13
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
\Section{Installing the FGA package}\null
15
16
\atindex{Installing the FGA package}{@Installing %
17
the {\FGA} package|indexit}
18
The installation of the {\FGA} package follows standard {\GAP} rules.
19
So the standard method is to unpack the archive into the `pkg'
20
directory of your {\GAP} distribution. This will create an `fga'
21
subdirectory.
22
23
For other non-standard options please see Chapter~"ref:Installing a
24
GAP Package" in the {\GAP} Reference Manual.
25
26
%To create the documentation, go into the `doc' directory and type
27
%`make_doc'.
28
29
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30
\Section{Loading the FGA package}\null
31
32
\atindex{Loading the FGA package}{@loading the {\FGA} package|indexit}
33
The {\FGA} package is configured to autoload, so its functionality is
34
usually available once {\GAP} is started.
35
36
If {\GAP} does not autoload, you can request the package with the
37
`LoadPackage' command like this:
38
39
\testexamplefalse
40
\beginexample
41
gap> LoadPackage( "fga" );
42
-----------------------------------------------------------------------------
43
Loading FGA 1.3.1 (Free Group Algorithms)
44
by Christian Sievers (c.sievers@tu-bs.de).
45
Homepage: http://www.icm.tu-bs.de/ag_algebra/software/FGA/
46
-----------------------------------------------------------------------------
47
true
48
\endexample
49
50
You will not see the banner if {\FGA} has already been loaded.
51
52
The `LoadPackage' command and ways to disable autoloading are
53
described in Section~"ref:Loading a GAP Package" in the {\GAP}
54
Reference Manual.
55
56
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57
%%
58
%E
59
60