Skip to content

Commit

Permalink
Merge pull request #8 from djuteau/devel
Browse files Browse the repository at this point in the history
Fixed the range in tensor product of morphisms
  • Loading branch information
djuteau authored Mar 1, 2023
2 parents 05a8ec9 + cd56768 commit c1bb57a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "HeckeCategories",
Subtitle := "Categorification of Hecke algebras",
Version := "2023.02-05",
Version := "2023.03-01",

Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ),
License := "GPL-2.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion gap/StandardCategory.gi
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ InstallMethodWithCache( StandardCategory,
return MorphismConstructor( cat,
TensorProductOnObjects( cat, Source( mor1 ), Source( mor2 ) ),
MorphismDatum( cat, mor1 ) * Pullback( phi_x, MorphismDatum( cat, mor2 ) ),
TensorProductOnObjects( cat, Range( mor1 ), Source( mor2 ) ) );
TensorProductOnObjects( cat, Range( mor1 ), Range( mor2 ) ) );

end );

Expand Down

0 comments on commit c1bb57a

Please sign in to comment.