19 lines
753 B
GDScript3
19 lines
753 B
GDScript3
|
#############################################################################
|
||
|
##
|
||
|
#W bol_core_methods.gd Common methods for Bol loops [loops]
|
||
|
##
|
||
|
#H @(#)$Id: bol_core_methods.gd, v 3.0.0 2015/06/12 gap Exp $
|
||
|
##
|
||
|
#Y Copyright (C) 2004, G. P. Nagy (University of Szeged, Hungary),
|
||
|
#Y P. Vojtechovsky (University of Denver, USA)
|
||
|
##
|
||
|
|
||
|
DeclareAttribute( "AssociatedLeftBruckLoop", IsLeftBolLoop );
|
||
|
DeclareAttribute( "AssociatedRightBruckLoop", IsRightBolLoop );
|
||
|
|
||
|
DeclareOperation( "IsExactGroupFactorization", [ IsGroup, IsGroup, IsGroup ] );
|
||
|
DeclareGlobalFunction( "RightBolLoopByExactGroupFactorizationNC" ); # auxiliary
|
||
|
DeclareGlobalFunction( "RightBolLoopByExactGroupFactorization" ); # variable arguments
|
||
|
|
||
|
|