Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/pkg/ctbllib/dlnames/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 11.6.2012 mit Größe 1 kB image not shown  

Quelle  dllib.g   Sprache: unbekannt

 
#############################################################################
##
#W  dllib.g              GAP 4 package CTblLib          Michael Claßen-Houben
##
#Y  Copyright (C)  2005,   Lehrstuhl D für Mathematik,  RWTH Aachen,  Germany
##


#############################################################################
##
#V  DeltigLibUnipotentCharacters
##
BindGlobal( "DeltigLibUnipotentCharacters", [] );

#ReadPackage( "ctbllib", "dlnames/ltgroups.g" );
ReadPackage( "ctbllib", "dlnames/uctypeA.g" );
ReadPackage( "ctbllib", "dlnames/uctype2A.g" );
ReadPackage( "ctbllib", "dlnames/uctypeB.g" );
ReadPackage( "ctbllib", "dlnames/uctypeC.g" );
ReadPackage( "ctbllib", "dlnames/uctypeD.g" );
ReadPackage( "ctbllib", "dlnames/uctype2D.g" );
ReadPackage( "ctbllib", "dlnames/uctypeX.g" );


#############################################################################
##
#F  DeltigLibGetRecord( <record> )
#F  DeltigLibGetRecord( <string> )
##
BindGlobal( "DeltigLibGetRecord", function( r )
    if IsString( r ) then
      return First( DeltigLibUnipotentCharacters, x -> x.identifier = r );
    else
      return First( DeltigLibUnipotentCharacters,
          elem ->     elem.isoc = r.isoc
                  and elem.l = r.l
                  and ( ( IsBound( r.q ) and elem.q = r.q )
                        or ( IsBound( r.q2 ) and elem.q2 = r.q2 ) )
                  and ( ( not IsBound( r.isot ) ) or r.isot in elem.isot ) );
    fi;
    end );


#############################################################################
##
#E


[ Dauer der Verarbeitung: 0.20 Sekunden  (vorverarbeitet)  ]