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
|
#############################################################################
##
## This file is part of GAP, a system for computational discrete algebra.
## This file's authors include Steve Linton.
##
## 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 defines some functions that tweak the behaviour of attributes
##
#############################################################################
##
#F EnableAttributeValueStoring( <attr> ) tell the attribute to resume
## storing values
##
InstallGlobalFunction(EnableAttributeValueStoring, function( attr )
Assert(1,IsOperation(attr));
Assert(2,Setter(attr) <> false);
Info(InfoAttributes + InfoWarning, 3, "Enabling value storing for ",NAME_FUNC(attr));
SET_ATTRIBUTE_STORING( attr, true);
end);
#############################################################################
##
#F DisableAttributeValueStoring( <attr> ) tell the attribute to stop
## storing values
##
InstallGlobalFunction(DisableAttributeValueStoring, function( attr )
Assert(1,IsOperation(attr));
Assert(2,Setter(attr) <> false);
Info(InfoAttributes + InfoWarning, 2, "Disabling value storing for ",NAME_FUNC(attr));
SET_ATTRIBUTE_STORING( attr, false);
end);
Unbind(CHECK_REPEATED_ATTRIBUTE_SET);
BindGlobal( "CHECK_REPEATED_ATTRIBUTE_SET", function(obj, name, val)
if InfoLevel(InfoAttributes) >= 3 then
if not IsBound(obj!.(name)) then
Info(InfoAttributes, 3, "Attribute ", name, " of ", obj, " is marked as assigned, but it has no value");
elif obj!.(name) <> val then
Info(InfoAttributes, 3, "Attribute ", name, " of ", obj, " already set to ", obj!.(name), ", cannot be changed to ", val);
fi;
fi;
end );
|