Skip to content

Commit

Permalink
CapJitAddTypeSignature( "DuplicateFreeList", [ IsList ], ... )
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-barakat committed Oct 4, 2023
1 parent 6c8a934 commit e2c3089
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CompilerForCAP/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "CompilerForCAP",
Subtitle := "Speed up computations in CAP categories",
Version := "2023.10-02",
Version := "2023.10-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
6 changes: 6 additions & 0 deletions CompilerForCAP/gap/InferDataTypes.gi
Original file line number Diff line number Diff line change
Expand Up @@ -1092,6 +1092,12 @@ CapJitAddTypeSignature( "SSortedList", [ IsList ], function ( input_types )

end );

CapJitAddTypeSignature( "DuplicateFreeList", [ IsList ], function ( input_types )

return input_types[1];

Check warning on line 1097 in CompilerForCAP/gap/InferDataTypes.gi

View check run for this annotation

Codecov / codecov/patch

CompilerForCAP/gap/InferDataTypes.gi#L1097

Added line #L1097 was not covered by tests

end );

CapJitAddTypeSignature( "First", [ IsList, IsFunction ], function ( args, func_stack )

# COVERAGE_IGNORE_BLOCK_START
Expand Down

0 comments on commit e2c3089

Please sign in to comment.