/* GVectors.level */
#define GAP_LEVEL_UNKNOWN 0
#define GAP_LEVEL_CLONE 1
#define GAP_LEVEL_SUBCLONE 2
typedef struct {
GCardinal name; /* vector name */
GCardinal level; /* 1=clone, 2=subclone, etc */
} GVectors;
The vector structure contains simply information on any vectors used in cloning and subcloning. The GTemplates and GClones structures reference this structure.
GAP_LEVEL_* macros for this field.