
| Current Path : /proc/thread-self/root/usr/include/gap/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/include/gap/objccoll.h |
/****************************************************************************
**
*W objccoll.h GAP source Werner Nickel
**
**
*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
#include "system.h"
/****************************************************************************
**
*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) \
(CONST_ADDR_OBJ(sc)[SCP_CLASS])
#define SC_WEIGHTS(sc) \
(CONST_ADDR_OBJ(sc)[SCP_WEIGHTS])
#define SC_AVECTOR2(sc) \
(CONST_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 module * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F InitInfoCombiCollector() . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoCombiCollector ( void );
#endif // GAP_OBJCCOLL_H