Goto Chapter: Top 1 2 3 4 Ind
 [Top of Book]  [Contents]   [Previous Chapter]   [Next Chapter] 

3 Tools
 3.1 Properties
 3.2 Operations
 3.3 Attributes

3 Tools

3.1 Properties

3.1-1 IsFinitelyPresentedCategory
‣ IsFinitelyPresentedCategory( C )( property )

Returns: true or false

The (evil) property of C being a finitely presented.

3.2 Operations

3.2-1 DefiningTripleOfUnderlyingQuiver
‣ DefiningTripleOfUnderlyingQuiver( C )( attribute )

Returns: a pair

The defining triple of the quiver underlying the finitely presented category C.

3.2-2 DataTablesOfCategory
‣ DataTablesOfCategory( C )( attribute )

Returns: a pair of lists

The data tables of the category C.

3.2-3 QuiverStringOfDigraph
‣ QuiverStringOfDigraph( D, name_of_quiver, prefix_of_name_of_morphisms )( operation )

Returns: a string

Return a string encoding the underlying quiver of the digraph D. The string name_of_quiver will be the name of the underlying quiver. The string prefix_of_name_of_morphisms will be the prefix of the name all morphisms.

gap> LoadPackage( "FpCategories", false );
true
gap> q := "q(1,2,3,4)[m_1_2:1->2,m_1_3:1->3,m_2_4:2->4,m_3_4:3->4]";;
gap> F := PathCategory( FinQuiver( q ) );
PathCategory( FinQuiver(
"q(1,2,3,4)[m_1_2:1-≻2,m_1_3:1-≻3,m_2_4:2-≻4,m_3_4:3-≻4]" ) )
gap> digraph := DigraphReflexiveTransitiveReduction(
>                    Digraph( SetOfObjects( F ), IsHomSetInhabited ) );
<immutable digraph with 4 vertices, 4 edges>
gap> QuiverStringOfDigraph( digraph, "q", "m" ) = q;
true

3.3 Attributes

3.3-1 SetOfGeneratingMorphismsOfCategory
‣ SetOfGeneratingMorphismsOfCategory( C )( attribute )

Returns: a list of a CAP category morphisms

Return a list of generating morphisms of the finitely generated category C.

3.3-2 SetOfGeneratingMorphisms
‣ SetOfGeneratingMorphisms( C )( attribute )

Returns: a list of a CAP category morphisms

Return a list of generating morphisms of the finitely generated category C. The corresponding CAP operation is SetOfGeneratingMorphismsOfCategory.

 [Top of Book]  [Contents]   [Previous Chapter]   [Next Chapter] 
Goto Chapter: Top 1 2 3 4 Ind

generated by GAPDoc2HTML