File: setup.gd

package info (click to toggle)
gap-alnuth 3.0.0-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 908 kB
  • ctags: 40
  • sloc: makefile: 103; sh: 11
file content (54 lines) | stat: -rw-r--r-- 1,586 bytes parent folder | download | duplicates (5)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#############################################################################
##
#W setup.gd         Alnuth - ALgebraic NUmber THeory        Andreas Distler
##

#############################################################################
##
#F ChangeGlobalVariable(name, path)
##
DeclareGlobalFunction("ChangeGlobalVariable");

#############################################################################
##
#F SetPariStackSize(size)
##
DeclareGlobalFunction("SetPariStackSize");

#############################################################################
##
#F SetAlnuthExternalExecutable(path)
##
DeclareGlobalFunction("SetAlnuthExternalExecutable");

#############################################################################
##
#F SuitablePariExecutable(path)
##
DeclareGlobalFunction("SuitablePariExecutable");

#############################################################################
##
#F PariVersion(path)
##
DeclareGlobalFunction("PariVersion");

#############################################################################
##
#F SetAlnuthExternalExecutablePermanently(path)
##
## Changes the file defs.g to set a new default value for AL_EXECUTABLE
##
DeclareGlobalFunction("SetAlnuthExternalExecutablePermanently");

#############################################################################
##
#F RestoreAlnuthExternalExecutablePermanently(path)
##
## restores the original content of the file defs.g
##
DeclareGlobalFunction("RestoreAlnuthExternalExecutablePermanently");

#############################################################################
##
#E