Goto Chapter: Top 1 2 3 4 5 6 7 8 9 10 11 12 Ind
 [Top of Book]  [Contents]   [Previous Chapter]   [Next Chapter] 

11 Tools
 11.1 Tools for quivers
 11.2 Tools for categories

11 Tools

11.1 Tools for quivers

11.1-1 DefiningTripleOfAQuiver
‣ DefiningTripleOfAQuiver( q )( attribute )

Returns: a triple

Return a triple consisting of the number of vertices of the quiver q, the number of arrows of the quiver q, and a list of pairs of integers encoding the arrows of q.

gap> LoadPackage( "Algebroids" );
true
gap> q := RightQuiver( "q(0..4)[a:0->0,s:0->1,t:0->1,m:3->0]" );
q(0,1,2,3,4)[a:0->0,s:0->1,t:0->1,m:3->0]
gap> DefiningTripleOfAQuiver( q );
[ 5, 4, [ [ 0, 0 ], [ 0, 1 ], [ 0, 1 ], [ 3, 0 ] ] ]

11.2 Tools for categories

11.2-1 NerveTruncatedInDegree2Data
‣ NerveTruncatedInDegree2Data( C )( attribute )

Returns: a pair consisting of a triple and an 8-tuple

The nerve data of the category C.

11.2-2 IndicesOfGeneratingMorphismsFromHomStructure
‣ IndicesOfGeneratingMorphismsFromHomStructure( C )( attribute )

Returns: a list of integers

The normalized indices of the generating morphisms of the finite category C.

11.2-3 OppositeFiniteCategory
‣ OppositeFiniteCategory( C )( attribute )

Returns: a CAP category

The opposite category of a finite category C.

 [Top of Book]  [Contents]   [Previous Chapter]   [Next Chapter] 
Goto Chapter: Top 1 2 3 4 5 6 7 8 9 10 11 12 Ind

generated by GAPDoc2HTML