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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
#############################################################################
##
#W filter.g GAP library Thomas Breuer
#W & Frank Celler
#W & Martin Schönert
##
##
#Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
#Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
#Y Copyright (C) 2002 The GAP Group
##
## This file deals with filters.
##
#############################################################################
##
#V FILTERS . . . . . . . . . . . . . . . . . . . . . . . list of all filters
##
## <FILTERS> and <RANK_FILTERS> are lists containing at position <i> the
## elementary filter with number <i> resp. its rank. Note that and-filters
## are not elementary and hence not contained in this list.
##
BIND_GLOBAL( "FILTERS", [] );
if IsHPCGAP then
LockAndMigrateObj(FILTERS, FILTER_REGION);
fi;
#############################################################################
##
#V RANK_FILTERS . . . . . . . . . . . . . . . . list of all rank of filters
##
## <FILTERS> and <RANK_FILTERS> are lists containing at position <i> the
## filter with number <i> resp. its rank.
##
BIND_GLOBAL( "RANK_FILTERS", [] );
if IsHPCGAP then
LockAndMigrateObj(RANK_FILTERS, FILTER_REGION);
fi;
#############################################################################
##
#V INFO_FILTERS . . . . . . . . . . . . . . . information about all filters
##
## <INFO_FILTERS> is a lists containing at position <i> information about
## the <i>.th filter. This information is stored as number with the
## following meanings:
##
## 0 = no additional information
## 1 = category kernel
## 2 = category
## 3 = representation kernel
## 4 = representation
## 5 = attribute kernel
## 6 = attribute
## 7 = property kernel
## 8 = tester of 7
## 9 = property
## 10 = tester of 9
##
BIND_GLOBAL( "INFO_FILTERS", [] );
if IsHPCGAP then
LockAndMigrateObj(INFO_FILTERS, FILTER_REGION);
fi;
BIND_GLOBAL( "FNUM_CATS", MakeImmutable([ 1, 2 ]) );
BIND_GLOBAL( "FNUM_REPS", MakeImmutable([ 3, 4 ]) );
BIND_GLOBAL( "FNUM_ATTS", MakeImmutable([ 5, 6 ]) );
BIND_GLOBAL( "FNUM_PROS", MakeImmutable([ 7, 9 ]) );
BIND_GLOBAL( "FNUM_TPRS", MakeImmutable([ 8, 10 ]) );
BIND_GLOBAL( "FNUM_CATS_AND_REPS", MakeImmutable([ 1 .. 4 ]) );
#############################################################################
##
#V IMM_FLAGS
##
## is a flag list.
## For the filters in `FILTERS{ TRUES_FLAGS( IMM_FLAGS ) }',
## no immediate method is installed.
## (The installation of immediate methods changes `IMM_FLAGS'.)
##
IMM_FLAGS := FLAGS_FILTER( IS_OBJECT );
#T EMPTY_FLAGS not yet defined !
#############################################################################
##
#F Setter( <filter> ) . . . . . . . . . . . . . . . . setter of a <filter>
##
BIND_GLOBAL( "Setter", SETTER_FILTER );
#############################################################################
##
#F Tester( <filter> ) . . . . . . . . . . . . . . . . tester of a <filter>
##
BIND_GLOBAL( "Tester", TESTER_FILTER );
#############################################################################
##
#F InstallTrueMethodNewFilter( <tofilt>, <from> )
##
## If <from> is a new filter then it cannot occur in the cache. Therefore
## we do not flush the cache. <from> should a basic filter not an `and' of
## from. This should only be used in the file "type.g".
##
BIND_GLOBAL( "InstallTrueMethodNewFilter", function ( tofilt, from )
local imp, found, imp2;
# Check that no filter implies `IsMutable'.
# (If this would be allowed then `Immutable' would be able
# to create paradoxical objects.)
if IS_SUBSET_FLAGS( FLAGS_FILTER( tofilt ),
FLAGS_FILTER( IS_MUTABLE_OBJ ) )
and not IS_IDENTICAL_OBJ( from, IS_MUTABLE_OBJ ) then
Error( "filter <from> must not imply `IsMutable'" );
fi;
# If 'tofilt' equals 'IsObject' then do nothing.
if IS_IDENTICAL_OBJ( tofilt, IS_OBJECT ) then
return;
fi;
# Apply the available implications from 'tofilt and from' to 'tofilt'.
imp := [];
imp[1] := WITH_IMPS_FLAGS( AND_FLAGS( FLAGS_FILTER( tofilt ),
FLAGS_FILTER( from ) ) );
imp[2] := FLAGS_FILTER( from );
atomic IMPLICATIONS_SIMPLE do
# Extend available implications by the new one if applicable.
found:= false;
for imp2 in IMPLICATIONS_SIMPLE do
if IS_SUBSET_FLAGS( imp2[2], imp[2] )
or IS_SUBSET_FLAGS( imp2[1], imp[2] ) then
imp2[1]:= AND_FLAGS( imp2[1], imp[1] );
if IS_EQUAL_FLAGS( imp2[2], imp[2] ) then
found:= true;
fi;
fi;
od;
for imp2 in IMPLICATIONS_COMPOSED do
if IS_SUBSET_FLAGS( imp2[2], imp[2] )
or IS_SUBSET_FLAGS( imp2[1], imp[2] ) then
imp2[1]:= AND_FLAGS( imp2[1], imp[1] );
if IS_EQUAL_FLAGS( imp2[2], imp[2] ) then
found:= true;
fi;
fi;
od;
if not found then
# Extend the list of implications.
if IsHPCGAP then
MIGRATE_RAW(imp, IMPLICATIONS_SIMPLE);
fi;
if IS_AND_FILTER(from) then
ADD_LIST( IMPLICATIONS_COMPOSED, imp );
else
IMPLICATIONS_SIMPLE[ TRUES_FLAGS( imp[2] )[1] ]:= imp;
fi;
fi;
od;
if not GAPInfo.CommandLineOptions.N then
InstallHiddenTrueMethod( tofilt, from );
fi;
end );
#############################################################################
##
#F InstallTrueMethod( <newfil>, <filt> )
##
## <#GAPDoc Label="InstallTrueMethod">
## <ManSection>
## <Func Name="InstallTrueMethod" Arg="newfil, filt"/>
##
## <Description>
## It may happen that a filter <A>newfil</A> shall be implied by another
## filter <A>filt</A>, which is usually a meet of other properties,
## or the meet of some properties and some categories.
## Such a logical implication can be installed as an <Q>immediate method</Q>
## for <A>newfil</A> that requires <A>filt</A> and that always returns
## <K>true</K>.
## (This should not be mixed up with the methods installed via
## <Ref Func="InstallImmediateMethod"/>, which have to be called at runtime
## for the actual objects.)
## <P/>
## <Ref Func="InstallTrueMethod"/> has the effect that <A>newfil</A> becomes
## an implied filter of <A>filt</A>,
## see <Ref Sect="Filters"/>.
## <P/>
## For example, each cyclic group is abelian,
## each finite vector space is finite dimensional,
## and each division ring is integral.
## The first of these implications is installed as follows.
## <P/>
## <Log><![CDATA[
## InstallTrueMethod( IsCommutative, IsGroup and IsCyclic );
## ]]></Log>
## <P/>
## Contrary to the immediate methods installed with
## <Ref Func="InstallImmediateMethod"/>, logical implications cannot be
## switched off.
## This means that after the above implication has been installed,
## one can rely on the fact that every object in the filter
## <C>IsGroup and IsCyclic</C> will also be in the filter
## <Ref Func="IsCommutative"/>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "InstallTrueMethod", function ( tofilt, from )
InstallTrueMethodNewFilter( tofilt, from );
# clear the caches because we do not know if filter <from> is new
CLEAR_HIDDEN_IMP_CACHE( from );
CLEAR_IMP_CACHE();
end );
#############################################################################
##
#F NewFilter( <name>[, <implied>][, <rank>] ) . . . . . create a new filter
##
## <#GAPDoc Label="NewFilter">
## <ManSection>
## <Func Name="NewFilter" Arg="name[, rank]"/>
##
## <Description>
## <Ref Func="NewFilter"/> returns a simple filter with name <A>name</A>
## (see <Ref Sect="Other Filters"/>).
## The optional second argument <A>rank</A> denotes the incremental rank
## (see <Ref Sect="Filters"/>) of the filter,
## the default value is 1.
## <P/>
## The default value of the new simple filter for each object is
## <K>false</K>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "NewFilter", function( arg )
local name, implied, rank, filter;
if LEN_LIST( arg ) = 3 then
name := arg[1];
implied := arg[2];
rank := arg[3];
elif LEN_LIST( arg ) = 2 then
if IS_INT( arg[2] ) then
name := arg[1];
implied := 0;
rank := arg[2];
else
name := arg[1];
implied := arg[2];
rank := 1;
fi;
else
name := arg[1];
implied := 0;
rank := 1;
fi;
# Create the filter.
filter := NEW_FILTER( name );
# Do some administrational work.
atomic FILTER_REGION do
FILTERS[ FLAG1_FILTER( filter ) ] := filter;
IMM_FLAGS:= AND_FLAGS( IMM_FLAGS, FLAGS_FILTER( filter ) );
RANK_FILTERS[ FLAG1_FILTER( filter ) ] := rank;
INFO_FILTERS[ FLAG1_FILTER( filter ) ] := 0;
od;
if implied <> 0 then
InstallTrueMethodNewFilter( implied, filter );
fi;
# Return the filter.
return filter;
end );
#############################################################################
##
#F DeclareFilter( <name>[, <implied>][, <rank>] )
##
## <#GAPDoc Label="DeclareFilter">
## <ManSection>
## <Func Name="DeclareFilter" Arg="name[, rank]"/>
##
## <Description>
## does the same as <Ref Func="NewFilter"/>
## and additionally makes the variable <A>name</A> read-only.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "DeclareFilter", function( arg )
BIND_GLOBAL( arg[1], CALL_FUNC_LIST( NewFilter, arg ) );
end );
#############################################################################
##
#F NamesFilter( <flags> ) . . . . . list of names of the filters in <flags>
##
BIND_GLOBAL( "NamesFilter", function( flags )
local bn, i;
if IS_FUNCTION(flags) then
flags := FLAGS_FILTER(flags);
fi;
if IS_LIST(flags) then
bn := SHALLOW_COPY_OBJ(flags);
else
bn := SHALLOW_COPY_OBJ(TRUES_FLAGS(flags));
fi;
atomic readonly FILTER_REGION do
for i in [ 1 .. LEN_LIST(bn) ] do
if not IsBound(FILTERS[ bn[i] ]) then
bn[i] := STRING_INT( bn[i] );
else
bn[i] := NAME_FUNC(FILTERS[ bn[i] ]);
fi;
od;
od;
return bn;
end );
#############################################################################
##
#F IS_ELEMENTARY_FILTER( <x> )
##
## function to test whether <x> is an elementary filter.
##
BIND_GLOBAL( "IS_ELEMENTARY_FILTER", function(x)
atomic readonly FILTER_REGION do
return x in FILTERS;
od;
end);
#############################################################################
##
#F IsFilter( <x> )
##
## function to test whether <x> is a filter.
## (This is *not* a filter itself!.)
## We handle IsObject as a special case, as it is equal to ReturnTrue,
## as all objects satisfy IsObject!
##
BIND_GLOBAL( "IsFilter", IS_FILTER );
## Global Rank declarations
#############################################################################
##
#V SUM_FLAGS
##
## Is an ``infinity'' value for method installations. It is more than can
## be reached by any filter arrangement.
BIND_GLOBAL( "SUM_FLAGS", 10000 );
#############################################################################
##
#V GETTER_FLAGS
##
## is the flag value used for the installation of the system getter.
BIND_GLOBAL( "GETTER_FLAGS", 2*SUM_FLAGS );
#############################################################################
##
#V NICE_FLAGS
##
## is the rank of `IsHandledByNiceMonomorphism'.
BIND_GLOBAL("NICE_FLAGS",QUO_INT(SUM_FLAGS,30));
#############################################################################
##
#V CANONICAL_BASIS_FLAGS
##
## is the incremental rank used for `Basis' methods that delegate to
## `CanonicalBasis'.
##
BIND_GLOBAL( "CANONICAL_BASIS_FLAGS", QUO_INT(SUM_FLAGS,5) );
#############################################################################
##
#F RankFilter( <filter> ) . . . . . . . . . . . . . . . . rank of a filter
##
## Compute the rank including the hidden implications.
##
BIND_GLOBAL( "RankFilter", function( filter )
local rank, flags, all, i;
rank := 0;
if IS_FUNCTION(filter) then
flags := FLAGS_FILTER(filter);
else
flags := filter;
fi;
if not GAPInfo.CommandLineOptions.N then
all := WITH_HIDDEN_IMPS_FLAGS(flags);
else
all := WITH_IMPS_FLAGS(flags);
fi;
for i in TRUES_FLAGS(all) do
if IsBound(RANK_FILTERS[i]) then
rank := rank + RANK_FILTERS[i];
else
rank := rank + 1;
fi;
od;
return rank;
end );
#############################################################################
##
#E
|