18 lines
640 B
GDScript3
18 lines
640 B
GDScript3
############################################################################
|
|
|
|
##
|
|
|
|
#W random.gd Random loops [loops]
|
|
|
|
##
|
|
|
|
#H @(#)$Id: random.gd, v 2.1.0 2008/12/08 gap Exp $
|
|
|
|
##
|
|
|
|
#Y Copyright (C) 2004, G. P. Nagy (University of Szeged, Hungary),
|
|
|
|
#Y P. Vojtechovsky (University of Denver, USA)
|
|
|
|
##
|
|
|
|
|
|
|
|
DeclareOperation( "RandomQuasigroup", [IsInt, IsInt ] );
|
|
|
|
# There is also a version of RandomLoop with [ IsInt ].
|
|
|
|
DeclareOperation( "RandomLoop", [ IsInt, IsInt ] );
|
|
|
|
# There is also a version of RandomLoop with [ IsInt ].
|
|
|
|
DeclareOperation( "RandomNilpotentLoop", [ IsList ] );
|
|
|
|
|
|
|
|
|
|
|