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
|
#############################################################################
##
#W extaset.gd GAP library Thomas Breuer
##
#H @(#)$Id: extaset.gd,v 4.9 2002/04/15 10:04:39 sal Exp $
##
#Y Copyright (C) 1996, Lehrstuhl D fuer 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 declares the operations for external additive sets.
##
Revision.extaset_gd :=
"@(#)$Id: extaset.gd,v 4.9 2002/04/15 10:04:39 sal Exp $";
#############################################################################
##
#C IsExtASet( <D> )
##
## An external additive set is a domain with an action of a domain via `\+'.
## Since the operator `\+' in {\GAP} is commutative we do not distinguish
## actions from left and right.
##
DeclareCategory( "IsExtASet", IsDomain and IsAdditiveElement );
#############################################################################
##
#C IsAssociativeAOpDSum( <D> )
##
## is `true' iff $a \+ ( x \+ y ) = ( a \+ x ) \+ y$
## for $a \in E$ and $x, y \in D$.
##
DeclareCategory( "IsAssociativeAOpDSum", IsExtASet );
#############################################################################
##
#C IsAssociativeAOpESum( <D> )
##
## is `true' iff $a \+ ( b \+ x ) = ( a \+ b ) \+ x$
## for $a, b \in E$ and $x \in D$.
##
DeclareCategory( "IsAssociativeAOpESum", IsExtASet );
#############################################################################
##
#C IsTrivialAOpEZero( <D> )
##
## is `true' iff the zero element $z \in E$ acts trivially on $D$,
## that is, $z \+ x = x$ for $x \in D$.
#T necessary?
##
DeclareCategory( "IsTrivialAOpEZero", IsExtASet );
#############################################################################
##
#A GeneratorsOfExtASet( <D> )
##
DeclareAttribute( "GeneratorsOfExtASet", IsExtASet );
#############################################################################
##
#A AdditivelyActingDomain( <D> )
##
DeclareAttribute( "AdditivelyActingDomain",
IsExtASet );
#############################################################################
##
#E extaset.gd . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
|