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

Quelle  DummyImplementationsOfMatricesForHomalg.gd   Sprache: unbekannt

 
# SPDX-License-Identifier: GPL-2.0-or-later
# CAP: Categories, Algorithms, Programming
#
# Declarations
#

#! @Chapter Dummy implementations

####################################
#
#! @Section Dummy homalg rings
#
####################################

#! The operations in this section require
#! `MatricesForHomalg` to be loaded.

####################################
#
# GAP filters
#
####################################

#! @Description
#!  The ⪆ filter of dummy homalg rings.
DeclareFilter( "IsDummyHomalgRing",
        IsHomalgRing );

#! @Description
#!  The ⪆ filter of elements of a dummy homalg ring.
DeclareFilter( "IsDummyHomalgRingElement",
        IsHomalgRingElement );

#! @Description
#!  The ⪆ filter of dummy commutative homalg rings.
DeclareFilter( "IsDummyCommutativeHomalgRing",
        IsDummyHomalgRing );

#! @Description
#!  The ⪆ filter of elements of a dummy commutative homalg ring.
DeclareFilter( "IsDummyCommutativeHomalgRingElement",
        IsDummyHomalgRingElement );

#! @Description
#!  The ⪆ filter of dummy homalg fields.
DeclareFilter( "IsDummyHomalgField",
        IsDummyCommutativeHomalgRing );

#! @Description
#!  The ⪆ filter of elements of a dummy homalg field.
DeclareFilter( "IsDummyHomalgFieldElement",
        IsDummyCommutativeHomalgRingElement );

####################################
#
# Constructors
#
####################################

#! @Description
#! @Arguments
#! @Returns a dummy homalg ring
DeclareGlobalFunction( "DummyHomalgRing" );

#! @Description
#! @Arguments
#! @Returns a dummy commutative homalg ring
DeclareGlobalFunction( "DummyCommutativeHomalgRing" );

#! @Description
#! @Arguments
#! @Returns a dummy homalg field
DeclareGlobalFunction( "DummyHomalgField" );


[ Dauer der Verarbeitung: 0.16 Sekunden  (vorverarbeitet)  ]