Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/smallantimagmas/lib/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 26.8.2025 mit Größe 596 B image not shown  

Quelle  utils.gd   Sprache: unbekannt

 
#! @Arguments n
#! @Description
#! returns all possible diagonals of multiplication table for <A>[n]</A>-antimagma.
#!
#! @BeginExampleSession
#! gap> AntimagmaGeneratorPossibleDiagonals(2);
#! [ [ 2, 1 ] ]
#! gap> AntimagmaGeneratorPossibleDiagonals(3);
#! [
#!   [ 2, 1, 1 ], [ 2, 1, 2 ], [ 2, 3, 1 ], [ 2, 3, 2 ],
#!   [ 3, 1, 1 ], [ 3, 1, 2 ], [ 3, 3, 1 ], [ 3, 3, 2 ]
#! ]
#! @EndExampleSession
#!

DeclareOperation("AntimagmaGeneratorPossibleDiagonals", [IsInt]);

#! @Arguments Ms
#! @Description
#! filters non-isomorphic magmas <A>Ms</A>.

DeclareOperation("UpToIsomorphism", [IsList]);

[ Dauer der Verarbeitung: 0.38 Sekunden  (vorverarbeitet)  ]