Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/pkg/crystcat/lib/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 28.4.2019 mit Größe 888 B image not shown  

Quelle  normalizer.gi   Sprache: unbekannt

 
#############################################################################
##
#W  crystcat.grp                 GAP library                    Franz G"ahler
##
#Y  Copyright (C)  1997,  Lehrstuhl D fuer Mathematik,  RWTH Aachen,  Germany
##

InstallMethod( NormalizerInGLnZ, 
    "for PointGroups of space groups from the cryst. groups catalogue",
    true, [ IsPointGroup and IsCyclotomicMatrixGroup ], 0,
function( P )
    local S, p, N, s, gen;
    S := AffineCrystGroupOfPointGroup( P );
    if not HasCrystCatRecord( S ) then
        TryNextMethod();
    fi;
    p := CrystCatRecord( S ).parameters;
    N := NormalizerZClass( p[1], p[2], p[3], p[4] );
    s := Size( N );
    if IsAffineCrystGroupOnRight( S ) then
        gen := List( GeneratorsOfGroup( N ), TransposedMat );
        N := GroupByGenerators( gen, One( N ) );
        SetSize( N, s );
    fi;
    return N;
end );

[ Dauer der Verarbeitung: 0.26 Sekunden  (vorverarbeitet)  ]