Skip to content

Commit

Permalink
Merge pull request #53 from mohamed-barakat/devel
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-barakat authored Oct 28, 2022
2 parents 0d12304 + 70d1355 commit 936d30e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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 := "2022.10-03",
Version := "2022.10-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", ">= 2022.05-07" ],
[ "Algebroids", ">= 2022.05-05" ],
[ "FunctorCategories", ">= 2022.10-24" ],
[ "FunctorCategories", ">= 2022.10-36" ],
],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
Expand Down
2 changes: 1 addition & 1 deletion examples/CategoryOfRepresentations.g
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Display( unit );
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]];;
e := [[0,1,0,0],[0,0,1,0],[0,0,0,0],[0,1,0,1],[0,0,1,0]];;
f := [[1,1,0,0],[0,1,1,0],[0,0,1,0],[0,0,0,1]];;
nine := AsObjectInFunctorCategory( A, [ 5, 4 ], [ d, e, f ] );
nine := AsObjectInFunctorCategory( CatReps, [ 5, 4 ], [ d, e, f ] );
#! <(1)->5, (2)->4; (a)->5x5, (b)->5x4, (c)->4x4>
Display( nine );
#! Image of <(1)>:
Expand Down
2 changes: 1 addition & 1 deletion examples/DecomposeOnceByRandomEndomorphism.g
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CatReps := FunctorCategory( A, GF3 );
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]];;
e := [[0,1,0,0],[0,0,1,0],[0,0,0,0],[0,1,0,1],[0,0,1,0]];;
f := [[1,1,0,0],[0,1,1,0],[0,0,1,0],[0,0,0,1]];;
nine := AsObjectInFunctorCategory( A, [ 5, 4 ], [ d, e, f ] );
nine := AsObjectInFunctorCategory( CatReps, [ 5, 4 ], [ d, e, f ] );
#! <(1)->5, (2)->4; (a)->5x5, (b)->5x4, (c)->4x4>
DecomposeOnceByRandomEndomorphism( nine );
#! fail
Expand Down
2 changes: 1 addition & 1 deletion examples/RepresentingC4C4.g
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ amat * bmat = bmat * cmat;
#! well-defined representation of C4C4.

#! @Example
eleven := AsObjectInFunctorCategory( A, [ 6, 5 ], [ amat, bmat, cmat ] );
eleven := AsObjectInFunctorCategory( CatReps, [ 6, 5 ], [ amat, bmat, cmat ] );
#! <(1)->6, (2)->5; (a)->6x6, (b)->6x5, (c)->5x5>
IsWellDefined( eleven );
#! true
Expand Down
4 changes: 2 additions & 2 deletions examples/notebooks/CategoryOfRepresentations.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@
}
],
"source": [
"CatReps = Hom( A, GF3 )"
"CatReps = FunctorCategory( A, GF3 )"
]
},
{
Expand Down Expand Up @@ -748,7 +748,7 @@
"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]];;\n",
"e = [[0,1,0,0],[0,0,1,0],[0,0,0,0],[0,1,0,1],[0,0,1,0]];;\n",
"f = [[1,1,0,0],[0,1,1,0],[0,0,1,0],[0,0,0,1]];;\n",
"nine = AsObjectInFunctorCategory( A, [ 5, 4 ], [ d, e, f ] )"
"nine = AsObjectInFunctorCategory( CatReps, [ 5, 4 ], [ d, e, f ] )"
]
},
{
Expand Down

0 comments on commit 936d30e

Please sign in to comment.