Skip to content

Commit

Permalink
pass the doctrine IsSymmetricMonoidalCategory
Browse files Browse the repository at this point in the history
needs FunctorCategories v2020.02.18
  • Loading branch information
mohamed-barakat committed Mar 31, 2020
1 parent 1bee10b commit 274d2f6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SetPackageInfo( rec(
PackageName := "CatReps",
Subtitle := "Representations and cohomology of finite categories",
Version := Maximum( [
"2020.02.17", ## Mohamed's version
"2020.02.18", ## Mohamed's version
## this line prevents merge conflicts
"2020.01.01", ## Tibor's version
## this line prevents merge conflicts
Expand Down Expand Up @@ -109,7 +109,7 @@ Dependencies := rec(
[ "FinSetsForCAP", ">= 2019.12.19" ],
[ "SubcategoriesForCAP", ">= 2020.02.02" ],
[ "MatricesForHomalg", ">= 2020.02.02" ],
[ "FunctorCategories", ">= 2020.02.15" ],
[ "FunctorCategories", ">= 2020.02.18" ],
],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
Expand Down
3 changes: 3 additions & 0 deletions examples/ConcreteCategoryWithEndomorphismGroups.g
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,9 @@ Display( six );
#! . . 1
#!
#! A morphism in Category of matrices over GF(3)
eta2 := TensorProductOnMorphisms( eta, eta );
#! <A morphism in The category of functors: Bialgebroid generated by the
#! right quiver q(2)[a:1->1,b:1->2,c:2->2] -> Category of matrices over GF(3)>
thirtyfive := CokernelObject( eta );
#! <An object in The category of functors: Bialgebroid generated by the
#! right quiver q(2)[a:1->1,b:1->2,c:2->2] -> Category of matrices over GF(3)>
Expand Down
4 changes: 3 additions & 1 deletion gap/CatRepsWithCAP.gi
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ InstallMethod( CategoryOfRepresentations,
function( kq, A )
local CatReps;

CatReps := Hom( kq, A : FinalizeCategory := false );
CatReps := Hom( kq, A :
doctrines := [ [ "IsSymmetricMonoidalCategory", true ] ],
FinalizeCategory := false );

AddTensorUnit( CatReps,
function( )
Expand Down

0 comments on commit 274d2f6

Please sign in to comment.