/usr/include/gap/pperm.h is in gap-dev 4r7p9-1.
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 59 60 61 62 63 64 65 66 67 68 69 | #include "system.h" /* system dependent part */
#include "gasman.h" /* garbage collector */
#include "objects.h" /* objects */
#include "scanner.h" /* scanner */
#include "gap.h" /* error handling, initialisation */
#include "gvars.h" /* global variables */
#include "calls.h" /* generic call mechanism */
#include "opers.h" /* generic operations */
#include "ariths.h" /* basic arithmetic */
#include "bool.h" /* booleans */
#include "integer.h" /* integers */
#include "intfuncs.h" /* hashing */
#include "permutat.h" /* permutations */
#include "records.h" /* generic records */
#include "precord.h" /* plain records */
#include "lists.h" /* generic lists */
#include "plist.h" /* plain lists */
#include "range.h" /* ranges */
#include "string.h" /* strings */
#include "saveload.h" /* saving and loading */
#include "set.h" /* sets */
#ifndef GAP_PPERM_H
#define GAP_PPERM_H
/****************************************************************************
**
*F OnTuplesPPerm( <tup>, <f> ) . . . . operations on tuples of points
**
** 'OnTuplesPPerm' returns the image of the tuple <tup> under the
** PPerm <f>.
*/
extern Obj OnTuplesPPerm ( Obj set, Obj f );
/****************************************************************************
**
*F OnSetsPPerm( <set>, <f> ) . . . . . . . . operations on sets of points
**
** 'OnSetsPPerm' returns the image of the tuple <set> under the
** partial perm <f>.
*/
extern Obj OnSetsPPerm ( Obj set, Obj f );
/****************************************************************************
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * */
/****************************************************************************
*F InitInfoPPerm() . . . . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoPPerm ( void );
#endif // GAP_PPERM_H
|