Skip to content

Commit 53805b2

Browse files
replace inhomogeneous literal list by NTuple
1 parent 31d981c commit 53805b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

FreydCategoriesForCAP/PackageInfo.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SetPackageInfo( rec(
1010

1111
PackageName := "FreydCategoriesForCAP",
1212
Subtitle := "Freyd categories - Formal (co)kernels for additive categories",
13-
Version := "2023.10-07",
13+
Version := "2023.11-01",
1414
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)( ),
1515
License := "GPL-2.0-or-later",
1616

FreydCategoriesForCAP/gap/FreydCategory.gi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ InstallGlobalFunction( INSTALL_FUNCTIONS_FOR_FREYD_CATEGORY,
913913

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

916-
return [ left_coefficients, right_coefficients, right_side ];
916+
return Triple( left_coefficients, right_coefficients, right_side );
917917

918918
end;
919919

@@ -959,7 +959,7 @@ InstallGlobalFunction( INSTALL_FUNCTIONS_FOR_FREYD_CATEGORY,
959959

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

962-
return [ left_coefficients, right_coefficients, right_side ];
962+
return Triple( left_coefficients, right_coefficients, right_side );
963963

964964
end;
965965

0 commit comments

Comments
 (0)