Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

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

Path: gap4r8 / src / bool.h
Views: 415066
1
/****************************************************************************
2
**
3
*W bool.h GAP source Martin Schönert
4
**
5
**
6
*Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
7
*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
8
*Y Copyright (C) 2002 The GAP Group
9
**
10
** This file declares the functions for the boolean package.
11
*/
12
13
#ifndef GAP_BOOL_H
14
#define GAP_BOOL_H
15
16
17
/****************************************************************************
18
**
19
20
*V True . . . . . . . . . . . . . . . . . . . . . . . . . . . . true value
21
**
22
** 'True' is the value 'true'.
23
*/
24
extern Obj True;
25
26
27
/****************************************************************************
28
**
29
*V False . . . . . . . . . . . . . . . . . . . . . . . . . . . . false value
30
**
31
** 'False' is the value 'false'.
32
*/
33
extern Obj False;
34
35
36
/****************************************************************************
37
**
38
*V Fail . . . . . . . . . . . . . . . . . . . . . . . . . . . . fail value
39
**
40
** 'Fail' is the value 'fail'.
41
*/
42
extern Obj Fail;
43
44
/****************************************************************************
45
**
46
*V SuPeRfail . . . . . . . . . . . . . . . . . . . . . . . superfail value
47
**
48
** 'SuPeRfail' is an ``superfail'' object which is used to indicate failure if
49
** `fail' itself is a sensible response. This is used when having GAP read
50
** a file line-by-line via a library function (demo.g)
51
*/
52
extern Obj SuPeRfail;
53
54
55
/****************************************************************************
56
**
57
58
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
59
*/
60
61
/****************************************************************************
62
**
63
64
*F InitInfoBool() . . . . . . . . . . . . . . . . . table of init functions
65
*/
66
StructInitInfo * InitInfoBool ( void );
67
68
69
#endif // GAP_BOOL_H
70
71
/****************************************************************************
72
**
73
74
*E bool.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
75
*/
76
77