Skip to content

Commit

Permalink
Merge pull request #1503 from mohamed-barakat/Triple
Browse files Browse the repository at this point in the history
replace inhomogeneous literal list by NTuple
  • Loading branch information
zickgraf authored Nov 23, 2023
2 parents 31d981c + 53805b2 commit 2a0e672
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FreydCategoriesForCAP/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "FreydCategoriesForCAP",
Subtitle := "Freyd categories - Formal (co)kernels for additive categories",
Version := "2023.10-07",
Version := "2023.11-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
4 changes: 2 additions & 2 deletions FreydCategoriesForCAP/gap/FreydCategory.gi
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ InstallGlobalFunction( INSTALL_FUNCTIONS_FOR_FREYD_CATEGORY,

right_side := [ ZeroMorphism( underlying_category, R_A, C ), alpha ];

return [ left_coefficients, right_coefficients, right_side ];
return Triple( left_coefficients, right_coefficients, right_side );

end;

Expand Down Expand Up @@ -959,7 +959,7 @@ InstallGlobalFunction( INSTALL_FUNCTIONS_FOR_FREYD_CATEGORY,

right_side := [ ZeroMorphism( underlying_category, R_A, C ), gamma ];

return [ left_coefficients, right_coefficients, right_side ];
return Triple( left_coefficients, right_coefficients, right_side );

end;

Expand Down

0 comments on commit 2a0e672

Please sign in to comment.