Skip to content

Commit

Permalink
Merge pull request #258 from zickgraf/master
Browse files Browse the repository at this point in the history
  • Loading branch information
zickgraf authored Jul 22, 2024
2 parents 82c0d68 + f51f479 commit a8daaae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "FinSetsForCAP",
Subtitle := "The elementary topos of (skeletal) finite sets",
Version := "2024.07-02",
Version := "2024.07-03",

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 @@ -1040,7 +1040,12 @@ end

########
function ( cat_1, T_1, P_1 )
return CreateCapCategoryMorphismWithAttributes( cat_1, P_1, T_1, AsList, [ ] );
return CreateCapCategoryMorphismWithAttributes( cat_1, P_1, T_1, AsList, CapJitTypedExpression( [ ], function ( )
return rec(
filter := IsList,
element_type := rec(
filter := IsInt ) );
end ) );
end
########

Expand Down

0 comments on commit a8daaae

Please sign in to comment.