Skip to content

Commit 086303d

Browse files
authored
Merge pull request #1486 from zickgraf/master
Add IsAbelianCategory as a requirement to a derivation of IsDominating
2 parents cbc272b + f390b2f commit 086303d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CAP/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 := "CAP",
1212
Subtitle := "Categories, Algorithms, Programming",
13-
Version := "2023.10-04",
13+
Version := "2023.10-05",
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

CAP/gap/DerivedMethods.autogen.gi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ AddDerivationToCAP( IsCodominating,
562562

563563
function ( cat_1, arg2_1, arg3_1 )
564564
return IsDominating( cat_1, KernelEmbedding( cat_1, arg3_1 ), KernelEmbedding( cat_1, arg2_1 ) );
565-
end : CategoryFilter := IsCapCategory,
565+
end : CategoryFilter := IsAbelianCategory,
566566
Weight := 1,
567567
is_autogenerated_by_CompilerForCAP := true );
568568

CAP/gap/DerivedMethods.gi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ AddDerivationToCAP( IsDominating,
897897

898898
return IsCodominating( cat, cokernel_projection_2, cokernel_projection_1 );
899899

900-
end );
900+
end : CategoryFilter := IsAbelianCategory );
901901

902902
##
903903
AddDerivationToCAP( IsDominating,

0 commit comments

Comments
 (0)