File: type.gi

package info (click to toggle)
gap 4.15.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 110,212 kB
  • sloc: ansic: 97,261; xml: 48,343; cpp: 13,946; sh: 4,900; perl: 1,650; javascript: 255; makefile: 252; ruby: 9
file content (245 lines) | stat: -rw-r--r-- 6,820 bytes parent folder | download | duplicates (2)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#############################################################################
##
##  This file is part of GAP, a system for computational discrete algebra.
##
##  Copyright of GAP belongs to its developers, whose names are too numerous
##  to list here. Please refer to the COPYRIGHT file for details.
##
##  SPDX-License-Identifier: GPL-2.0-or-later
##
##  This file implements some additional functions relating to types and
##  families.
##

#############################################################################
##
#M  FiltersType( <type> )
##
##  Return list of filters set in the given type.
##
InstallMethod(FiltersType, "for a type", [ IsType ],
    type -> FILTERS{ TRUES_FLAGS(type![POS_FLAGS_TYPE]) });

#############################################################################
##
#M  FiltersObj( <object> )
##
##  Return list of filters set in the type of <object>.
##
InstallMethod(FiltersObj, "for an object", [ IsObject ],
    obj -> FiltersType(TypeObj(obj)));

#############################################################################
##
#M  NamesFilterShort( flags, max )
##
##  Make a shortened list of filter names for display purposes
##
BindGlobal("NamesFilterShort",
function(flags, max)
    local names;

    names := NamesFilter(flags);
    if Length(names) > max then
        names := names{[1..max]};
        Add(names, "...");
    fi;
    names := JoinStringsWithSeparator(names, ", ");

    return Concatenation("[ ", names, " ]");
end);

#############################################################################
##
#M  ViewString( <fam> )
##
InstallMethod( ViewString,
    "for a family",
    true,
    [ IsFamily ],
    0,
function(family)
    return STRINGIFY("<Family: \"", family!.NAME, "\">");
end);

#############################################################################
##
#M  DisplayString( <fam> )
##
InstallMethod( DisplayString,
    "for a family",
    true,
    [ IsFamily ],
    0,
function(family)
    local  res, req_flags, imp_flags, fnams;

    res := "";
    Append(res, STRINGIFY("name:\n    ", family!.NAME));
    req_flags := TRUES_FLAGS(family!.REQ_FLAGS);
    fnams := NamesFilter(req_flags);
    fnams := JoinStringsWithSeparator(fnams, "\n    ");
    Append(res, STRINGIFY("\nrequired filters:\n    ", fnams));
    imp_flags := family!.IMP_FLAGS;
    if imp_flags <> [  ]  then
        fnams := NamesFilter(TRUES_FLAGS(imp_flags));
        fnams := JoinStringsWithSeparator(fnams, "\n    ");
        Append(res, STRINGIFY( "\nimplied filters:\n    ", fnams));
    fi;
    return res;
end);

#############################################################################
##
#M  ViewString( <type> )
##
InstallOtherMethod( ViewString,
    "for a type",
    true,
    [ IsType ],
    0,
function ( type )
    local  res, family, flags, data;

    res := "<Type: (";
    family := type![POS_FAMILY_TYPE];
    Append(res, family!.NAME);
    Append(res, ", ");

    flags := type![POS_FLAGS_TYPE];
    Append(res, NamesFilterShort(flags, 3) );
    Append(res, ")");

    data := type![POS_DATA_TYPE];
    if data <> false  then
        Append(res, STRINGIFY(", data: ", data ) );
    fi;
    Append(res, ">");
    return res;
end);

#############################################################################
##
#M  DisplayString( <type> )
##
InstallOtherMethod( DisplayString,
    "for a type",
    true,
    [ IsType ],
    0,
function ( type )
    local  res, family, flags, data, fnams;

    res := "";
    family := type![POS_FAMILY_TYPE];
    flags := type![POS_FLAGS_TYPE];
    data := type![POS_DATA_TYPE];

    Append(res, STRINGIFY("family:\n    ", family!.NAME));
    if flags <> [  ] or data <> false  then
        fnams := NamesFilter(TRUES_FLAGS(flags));
        fnams := JoinStringsWithSeparator(fnams, "\n    ");
        Append(res, STRINGIFY("\nfilters:\n    ", fnams));
        if data <> false  then
            Append(res, STRINGIFY("\ndata:\n", data ) );
        fi;
    fi;
    return res;
end);

InstallGlobalFunction( TypeOfOperation,
function(oper)
    local type, flags, types, catok, repok, propok, seenprop, t;
    if not IsOperation(oper) then
        ErrorNoReturn("<oper> must be an operation");
    fi;

    type := "Operation";
    if IS_IDENTICAL_OBJ(oper, IS_OBJECT) then
        type := "Filter";
    elif IS_CONSTRUCTOR(oper) then
        type := "Constructor";
    elif IsFilter(oper) then
        type := "Filter";
        flags := FLAGS_FILTER(oper);
        if flags <> false then
            flags := TRUES_FLAGS(flags);
            types := [];
            atomic readonly FILTER_REGION do
                for t in flags do
                    AddSet(types, INFO_FILTERS[t]);
                od;
            od;
            catok := true;
            repok := true;
            propok := true;
            seenprop := false;
            for t in types do
                if not t in FNUM_REPS then
                    repok := false;
                fi;
                if not t in FNUM_CATS then
                    catok := false;
                fi;
                if not t in FNUM_PROS and not t in FNUM_TPRS then
                    propok := false;
                fi;
                if t in FNUM_PROS then
                    seenprop := true;
                fi;
            od;
            if seenprop and propok then
                type := "Property";
            elif catok then
                type := "Category";
            elif repok then
                type := "Representation";
            fi;
        fi;
    elif IsOperation(FLAG1_FILTER(oper)) and IsOperation(FLAG1_FILTER(oper)) then
        # this is a setter for an and-filter
        type := "Setter";
    elif FLAG1_FILTER(oper) > 0 then
        # this is a setter for an elementary filter
        type := "Setter";
    elif Tester(oper) <> false  then
        # oper is an attribute
        type := "Attribute";
    fi;
    return type;
end);

InstallGlobalFunction( IsCategory,
function(object)
    return IsOperation(object) and TypeOfOperation(object) = "Category";
end);

InstallGlobalFunction( IsRepresentation,
function(object)
    return IsOperation(object) and TypeOfOperation(object) = "Representation";
end);

InstallGlobalFunction( IsAttribute,
function(object)
    return IsOperation(object) and TypeOfOperation(object) = "Attribute";
end);

InstallGlobalFunction( IsProperty,
function(object)
    return IsOperation(object) and TypeOfOperation(object) = "Property";
end);

InstallGlobalFunction( CategoryByName,
function(name)
    local fid;

    atomic readonly CATS_AND_REPS, FILTER_REGION do
    for fid in CATS_AND_REPS do
        if (INFO_FILTERS[fid] in FNUM_CATS) and
           (NAME_FUNC(FILTERS[fid]) = name) then
            return FILTERS[fid];
        fi;
    od;
    od;
    return fail;
end);