Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/modules/gap/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 22.11.2024 mit Größe 1 kB image not shown  

Quelle  SymmetricAlgebra.gd   Sprache: unbekannt

 
# SPDX-License-Identifier: GPL-2.0-or-later
# Modules: A homalg based package for the Abelian category of finitely presented modules over computable rings
#
# Declarations
#

##  Declarations for symmetric powers.

DeclareAttribute( "SymmetricPowers",
        IsHomalgModule, "mutable" );

##  <#GAPDoc Label="SymmetricPower">
##  <ManSection>
##    <Oper Arg="k, M" Name="SymmetricPower"/>
##    <Returns>a &homalg; module</Returns>
##    <Description>
##      Construct the <A>k</A>-th exterior power of module <A>M</A>.
##    </Description>
##  </ManSection>
##  <#/GAPDoc>
DeclareOperation( "SymmetricPower",
        [ IsInt, IsHomalgModule ]);

DeclareOperation( "SymmetricPower",
        [ IsInt, IsHomalgMatrix ]);

DeclareOperation( "SymmetricPower",
        [ IsInt, IsHomalgMorphism ]);

DeclareOperation( "SymmetricPowerOfPresentationMorphism",
        [ IsInt, IsHomalgMorphism ]);

##  <#GAPDoc Label="IsSymmetricPower">
##  <ManSection>
##    <Prop Arg="M" Name="IsSymmetricPower"/>
##    <Returns><C>true</C> or <C>false</C></Returns>
##    <Description>
##      Marks a module as an symmetric power of another module.
##    </Description>
##  </ManSection>
##  <#/GAPDoc>
##
DeclareProperty( "IsSymmetricPower",
        IsHomalgModule );

##  <#GAPDoc Label="SymmetricPowerExponent">
##  <ManSection>
##    <Attr Arg="M" Name="SymmetricPowerExponent"/>
##    <Returns>an integer</Returns>
##    <Description>
##      The exponent of the symmetric power.
##    </Description>
##  </ManSection>
##  <#/GAPDoc>
##
DeclareAttribute( "SymmetricPowerExponent",
        IsHomalgModule );

##  <#GAPDoc Label="SymmetricPowerBaseModule">
##  <ManSection>
##    <Attr Arg="M" Name="SymmetricPowerBaseModule"/>
##    <Returns>a homalg module</Returns>
##    <Description>
##      The module that <A>M</A> is an symmetric power of.
##    </Description>
##  </ManSection>
##  <#/GAPDoc>
##
DeclareAttribute( "SymmetricPowerBaseModule",
        IsHomalgModule );


[ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet)  ]