Skip to content

Commit

Permalink
fixed (Left)C(oc)losedMonoidalCategoriesTestWithGiven
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-barakat committed Jan 1, 2025
1 parent c92931f commit a9ed7c9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion MonoidalCategories/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "MonoidalCategories",
Subtitle := "Monoidal and monoidal (co)closed categories",
Version := "2024.09-05",
Version := "2025.01-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
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ InstallGlobalFunction( "ClosedMonoidalCategoriesTestWithGiven",
hom_bc_x_a := TensorProductOnObjects( hom_bc, a );
hom_da_x_c := TensorProductOnObjects( hom_da, c );

cohom_ad := InternalHomOnObjects( a_op, d_op );
cohom_cb := InternalHomOnObjects( c_op, b_op );
cohom_ad := InternalCoHomOnObjects( a_op, d_op );
cohom_cb := InternalCoHomOnObjects( c_op, b_op );

cohom_ad_x_c := TensorProductOnObjects( cohom_ad, c_op );
cohom_cb_x_a := TensorProductOnObjects( cohom_cb, a_op );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ InstallGlobalFunction( "CoclosedMonoidalCategoriesTestWithGiven",
#
##################################################

cohom_bc := InternalHomOnObjects( b, c );
cohom_da := InternalHomOnObjects( d, a );
cohom_bc := InternalCoHomOnObjects( b, c );
cohom_da := InternalCoHomOnObjects( d, a );

cohom_bc_x_d := TensorProductOnObjects( cohom_bc, d );
cohom_da_x_b := TensorProductOnObjects( cohom_da, b );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ InstallGlobalFunction( "LeftClosedMonoidalCategoriesTestWithGiven",
hom_bc_x_a := TensorProductOnObjects( hom_bc, a );
hom_da_x_c := TensorProductOnObjects( hom_da, c );

cohom_ad := LeftInternalHomOnObjects( a_op, d_op );
cohom_cb := LeftInternalHomOnObjects( c_op, b_op );
cohom_ad := LeftInternalCoHomOnObjects( a_op, d_op );
cohom_cb := LeftInternalCoHomOnObjects( c_op, b_op );

cohom_ad_x_c := TensorProductOnObjects( cohom_ad, c_op );
cohom_cb_x_a := TensorProductOnObjects( cohom_cb, a_op );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ InstallGlobalFunction( "LeftCoclosedMonoidalCategoriesTestWithGiven",
#
##################################################

cohom_bc := LeftInternalHomOnObjects( b, c );
cohom_da := LeftInternalHomOnObjects( d, a );
cohom_bc := LeftInternalCoHomOnObjects( b, c );
cohom_da := LeftInternalCoHomOnObjects( d, a );

cohom_bc_x_d := TensorProductOnObjects( cohom_bc, d );
cohom_da_x_b := TensorProductOnObjects( cohom_da, b );
Expand Down

0 comments on commit a9ed7c9

Please sign in to comment.