Skip to content

Commit

Permalink
renamed WeakDirectSumDecomposition -> WeakDirectSumDecompositionOld
Browse files Browse the repository at this point in the history
comply with FunctorCategories v2020.05.18
  • Loading branch information
mohamed-barakat committed Sep 9, 2020
1 parent 01bdc72 commit 71ab7ef
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 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.05.17", ## Mohamed's version
"2020.05.18", ## Mohamed's version
## this line prevents merge conflicts
"2020.01.01", ## Tibor's version
## this line prevents merge conflicts
Expand Down Expand Up @@ -112,7 +112,7 @@ Dependencies := rec(
[ "MatricesForHomalg", ">= 2020.02.02" ],
[ "Toposes", ">= 2020.04.27" ],
[ "Algebroids", ">= 2020.04.24" ],
[ "FunctorCategories", ">= 2020.05.13" ],
[ "FunctorCategories", ">= 2020.05.18" ],
],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
Expand Down
2 changes: 1 addition & 1 deletion examples/AssociatorUnitor.g
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ f := HomalgMatrix( f, 4, 4, GF3 );;
f := VectorSpaceMorphism( V2, f, V2 );;
nine := AsObjectInHomCategory( kq, [ V1, V2 ], [ d, e, f ] );;
fortyone := TensorProductOnObjects( nine, nine );;
etas := WeakDirectSumDecomposition( fortyone );;
etas := WeakDirectSumDecompositionOld( fortyone );;
eta := etas[3];;
six := Source( eta );;
thirtyfive := CokernelObject( eta );;
Expand Down
4 changes: 2 additions & 2 deletions examples/CategoryOfRepresentations.g
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Display( nine(kq.b) );
#! A morphism in Category of matrices over GF(3)
IsWellDefined( nine );
#! true
Length( WeakDirectSumDecomposition( nine ) );
Length( WeakDirectSumDecompositionOld( nine ) );
#! 1
fortyone := TensorProductOnObjects( nine, nine );
#! <(1)->25, (2)->16; (a)->25x25, (b)->25x16, (c)->16x16>
Expand Down Expand Up @@ -266,7 +266,7 @@ Display( fortyone );
#! . . . . . . . . . . . . . . . 1
#!
#! A morphism in Category of matrices over GF(3)
etas := WeakDirectSumDecomposition( fortyone );;
etas := WeakDirectSumDecompositionOld( fortyone );;
dec := List( etas, eta -> List( SetOfObjects( kq ),
o -> Dimension( Source( UnderlyingCapTwoCategoryCell( eta )( o ) ) ) ) );
#! [ [ 3, 0 ], [ 3, 1 ], [ 3, 3 ], [ 3, 3 ], [ 0, 3 ],
Expand Down
2 changes: 1 addition & 1 deletion examples/RepresentingC4C4.g
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Display( eleven );
#! . . . . 1
#!
#! A morphism in Category of matrices over GF(3)
gammas := WeakDirectSumDecomposition( eleven );
gammas := WeakDirectSumDecompositionOld( eleven );
#! [ <(1)->1x6, (2)->0x5>, <(1)->1x6, (2)->1x5>, <(1)->1x6, (2)->1x5>,
#! <(1)->2x6, (2)->0x5>, <(1)->0x6, (2)->2x5>, <(1)->1x6, (2)->1x5> ]
#! @EndExample
Expand Down
2 changes: 1 addition & 1 deletion gap/CatRepsWithCAP.gd
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ DeclareOperation( "EmbeddingOfSubRepresentation",
#! the direct sum thereof is isomorphic to <A>F</A>.
#! @Arguments F
#! @Returns a list
DeclareOperation( "WeakDirectSumDecomposition",
DeclareOperation( "WeakDirectSumDecompositionOld",
[ IsCapCategoryObjectInHomCategory ] );

####################################
Expand Down
2 changes: 1 addition & 1 deletion gap/CatRepsWithCAP.gi
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ InstallMethod( EmbeddingOfSubRepresentation,
end );

##
InstallMethod( WeakDirectSumDecomposition,
InstallMethod( WeakDirectSumDecompositionOld,
"for an object in a Hom-category",
[ IsCapCategoryObjectInHomCategory ],

Expand Down

0 comments on commit 71ab7ef

Please sign in to comment.