Skip to content

Commit

Permalink
Merge pull request #1486 from zickgraf/master
Browse files Browse the repository at this point in the history
Add IsAbelianCategory as a requirement to a derivation of IsDominating
  • Loading branch information
zickgraf authored Oct 6, 2023
2 parents cbc272b + f390b2f commit 086303d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CAP/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "CAP",
Subtitle := "Categories, Algorithms, Programming",
Version := "2023.10-04",
Version := "2023.10-05",
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 CAP/gap/DerivedMethods.autogen.gi
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ AddDerivationToCAP( IsCodominating,

function ( cat_1, arg2_1, arg3_1 )
return IsDominating( cat_1, KernelEmbedding( cat_1, arg3_1 ), KernelEmbedding( cat_1, arg2_1 ) );
end : CategoryFilter := IsCapCategory,
end : CategoryFilter := IsAbelianCategory,
Weight := 1,
is_autogenerated_by_CompilerForCAP := true );

Expand Down
2 changes: 1 addition & 1 deletion CAP/gap/DerivedMethods.gi
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ AddDerivationToCAP( IsDominating,

return IsCodominating( cat, cokernel_projection_2, cokernel_projection_1 );

end );
end : CategoryFilter := IsAbelianCategory );

##
AddDerivationToCAP( IsDominating,
Expand Down

0 comments on commit 086303d

Please sign in to comment.