forked from gap-system/gap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjccoll.h
81 lines (60 loc) · 2.29 KB
/
objccoll.h
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/****************************************************************************
**
*W objccoll.h GAP source Werner Nickel
**
*H @(#)$Id$
**
*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
*Y Copyright (C) 2002 The GAP Group
*/
#ifndef GAP_OBJCCOLL_H
#define GAP_OBJCCOLL_H
#ifdef INCLUDE_DECLARATION_PART
const char * Revision_objccoll_h =
"@(#)$Id$";
#endif
/****************************************************************************
**
*D SCP_SOMETHING . . . . . . . . . . . . . . . for combinatorial collectors
**
** Definitions which are needed by the combinatorial collectors in addition
** to those made for single collectors.
*/
#define SCP_WEIGHTS SCP_LAST+1 /* weight in a combi collector */
#define SCP_CLASS SCP_LAST+2 /* p-class in a combi collector */
#define SCP_AVECTOR2 SCP_LAST+3 /* avector */
/****************************************************************************
**
*D SC_SOMETHING( <sc> ) . . . . . . . . . . . for combinatorial collectors
**
*/
#define SC_CLASS(sc) \
(ADDR_OBJ(sc)[SCP_CLASS])
#define SC_WEIGHTS(sc) \
(ADDR_OBJ(sc)[SCP_WEIGHTS])
#define SC_AVECTOR2(sc) \
(ADDR_OBJ(sc)[SCP_AVECTOR2])
/****************************************************************************
**
** Here we declare the combinatorial collector functions. Pointer to those
** functions are put into the relevant data structures in the single
** collector module. Therefore, the single collector module needs to
** include this file.
*/
Int C8Bits_CombiCollectWord ( Obj, Obj, Obj );
Int C16Bits_CombiCollectWord ( Obj, Obj, Obj );
Int C32Bits_CombiCollectWord ( Obj, Obj, Obj );
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F InitInfoCombiCollector() . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoCombiCollector ( void );
#endif // GAP_OBJCCOLL_H
/****************************************************************************
**
*E objccoll.h . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
*/