Skip to content

Commit

Permalink
renamed constructor Hom -> FunctorCategory
Browse files Browse the repository at this point in the history
needs FunctorCategories v2021.11-08
  • Loading branch information
mohamed-barakat committed Nov 27, 2021
1 parent d756203 commit 251e9ec
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "CatReps",
Subtitle := "Representations and cohomology of finite categories",
Version := "2021.11-03",
Version := "2021.11-04",

Date := ~.Version{[ 1 .. 10 ]},
Date := Concatenation( "01/", ~.Version{[ 6, 7 ]}, "/", ~.Version{[ 1 .. 4 ]} ),
Expand Down Expand Up @@ -109,7 +109,7 @@ Dependencies := rec(
[ "MatricesForHomalg", ">= 2020.02.02" ],
[ "Toposes", ">= 2021.11-18" ],
[ "Algebroids", ">= 2021.08-02" ],
[ "FunctorCategories", ">= 2021.11-06" ],
[ "FunctorCategories", ">= 2021.11-08" ],
],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ true
Finally, using the constructor `Hom` from the package [`FunctorCategories`](https://github.com/homalg-project/FunctorCategories) one can construct the category of finite dimensional k-linear representations of the finite concrete category:

```gap
gap> CatReps := Hom( A, Q );
gap> CatReps := FunctorCategory( A, Q );
The category of functors: Algebroid generated by the right quiver
q(2)[a:1->1,b:1->2,c:2->2] -> Category of matrices over Q
```
Expand Down
4 changes: 2 additions & 2 deletions examples/Algebroid.g
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ UnderlyingCategory( A2 );
#! Category generated by the right quiver q(2)[a:1->1,b:1->2,c:2->2] with relations
UnderlyingCategory( UnderlyingCategory( A2 ) ) = ccat2;
#! true
CatReps1 := Hom( A1, Q );
CatReps1 := FunctorCategory( A1, Q );
#! The category of functors: Algebroid generated by the right quiver
#! q(2)[a:1->1,b:1->2,c:2->2] -> Category of matrices over Q
CatReps2 := Hom( A2, Q );
CatReps2 := FunctorCategory( A2, Q );
#! The category of functors: Algebroid generated by the right quiver
#! q(2)[a:1->1,b:1->2,c:2->2] -> Category of matrices over Q
#! @EndExample
2 changes: 1 addition & 1 deletion examples/AssociatorUnitor.g
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ AddBialgebroidStructure( kq, counit, comult );
counit := Counit( kq );
comult := Comultiplication( kq );
kmat := MatrixCategory( GF3 );
CatReps := Hom( kq, kmat );
CatReps := FunctorCategory( kq, kmat );
zero := ZeroObject( CatReps );
unit := TensorUnit( CatReps );
V1 := VectorSpaceObject( 5, GF3 );
Expand Down
2 changes: 1 addition & 1 deletion examples/CategoryOfRepresentations.g
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ A := GF3[c3c3];
#! Algebroid generated by the right quiver q(2)[a:1->1,b:1->2,c:2->2]
IsLinearClosureOfACategory( A );
#! true
CatReps := Hom( A, GF3 );
CatReps := FunctorCategory( A, GF3 );
#! The category of functors: Algebroid generated by the right quiver
#! q(2)[a:1->1,b:1->2,c:2->2] -> Category of matrices over GF(3)
InfoOfInstalledOperationsOfCategory( CatReps );
Expand Down
2 changes: 1 addition & 1 deletion examples/DecomposeOnceByRandomEndomorphism.g
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A := GF3[c3c3];
#! Algebroid generated by the right quiver q(2)[a:1->1,b:1->2,c:2->2]
IsLinearClosureOfACategory( A );
#! true
CatReps := Hom( A, GF3 );
CatReps := FunctorCategory( A, GF3 );
#! The category of functors: Algebroid generated by the right quiver
#! q(2)[a:1->1,b:1->2,c:2->2] -> Category of matrices over GF(3)
d := [[1,1,0,0,0],[0,1,1,0,0],[0,0,1,0,0],[0,0,0,1,1],[0,0,0,0,1]];;
Expand Down
2 changes: 1 addition & 1 deletion examples/RepresentingC4C4.g
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ SetIsLinearClosureOfACategory( A, true );
#! less trivial.

#! @Example
CatReps := Hom( A, GF3 );
CatReps := FunctorCategory( A, GF3 );
#! The category of functors: Algebroid generated by the
#! right quiver q(2)[a:1->1,b:1->2,c:2->2] ->
#! Category of matrices over GF(3)
Expand Down

0 comments on commit 251e9ec

Please sign in to comment.