@@ -153,7 +153,7 @@ InstallMethod( CompositionMapping2,
153
153
InstallMethod( IsInjective,
154
154
" for a composition mapping" ,
155
155
true ,
156
- [ IsCompositionMappingRep ] , 0 ,
156
+ [ IsCompositionMappingRep ] , SUM_FLAGS ,
157
157
function ( com )
158
158
if IsInjective( com!. map1 ) and IsInjective( com!. map2 ) then
159
159
return true ;
@@ -176,7 +176,7 @@ InstallMethod( IsInjective,
176
176
InstallMethod( IsSingleValued,
177
177
" for a composition mapping" ,
178
178
true ,
179
- [ IsCompositionMappingRep ] , 0 ,
179
+ [ IsCompositionMappingRep ] , SUM_FLAGS ,
180
180
function ( com )
181
181
if IsSingleValued( com!. map1 ) and IsSingleValued( com!. map2 ) then
182
182
return true ;
@@ -199,7 +199,7 @@ InstallMethod( IsSingleValued,
199
199
InstallMethod( IsSurjective,
200
200
" for a composition mapping" ,
201
201
true ,
202
- [ IsCompositionMappingRep ] , 0 ,
202
+ [ IsCompositionMappingRep ] , SUM_FLAGS ,
203
203
function ( com )
204
204
if not IsSurjective( com!. map2 ) then
205
205
return false ;
@@ -218,7 +218,7 @@ InstallMethod( IsSurjective,
218
218
InstallMethod( IsTotal,
219
219
" for a composition mapping" ,
220
220
true ,
221
- [ IsCompositionMappingRep ] , 0 ,
221
+ [ IsCompositionMappingRep ] , SUM_FLAGS ,
222
222
function ( com )
223
223
if not IsTotal( com!. map1 ) then
224
224
return false ;
0 commit comments