/usr/include/gap/objcftl.h is in gap-dev 4r6p5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /****************************************************************************
**
*W objcftl.h GAP source Werner Nickel
**
**
** This file declares the function collecting from the left with polycyclic
** presentations.
*/
#ifndef GAP_OBJCFTL_H
#define GAP_OBJCFTL_H
#define PC_NUMBER_OF_GENERATORS 1
#define PC_GENERATORS 2
#define PC_INVERSES 3
#define PC_COMMUTE 4
#define PC_POWERS 5
#define PC_INVERSEPOWERS 6
#define PC_EXPONENTS 7
#define PC_CONJUGATES 8
#define PC_INVERSECONJUGATES 9
#define PC_CONJUGATESINVERSE 10
#define PC_INVERSECONJUGATESINVERSE 11
#define PC_DEEP_THOUGHT_POLS 12
#define PC_DEEP_THOUGHT_BOUND 13
#define PC_ORDERS 14
#define PC_WORD_STACK 15
#define PC_STACK_SIZE 16
#define PC_WORD_EXPONENT_STACK 17
#define PC_SYLLABLE_STACK 18
#define PC_EXPONENT_STACK 19
#define PC_STACK_POINTER 20
#define PC_DEFAULT_TYPE 21
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F InitInfoPcc() . . . . . . . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoPcc ( void );
#endif // GAP_OBJCFTL_H
/****************************************************************************
**
*E objcftl.c . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
*/
|