Skip to content

Commit

Permalink
version 0.53 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdwensley committed Jan 23, 2018
1 parent 36ba9f2 commit 8db2c60
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGES log for the 'Utils' package

## Version 0.52 for GAP 4.8.10 (23/01/18)
## Version 0.53 for GAP 4.8.10 (23/01/18)

* (22/01/18) PrintOneItemPerLine plus alternative method for iterators; added
function PrintSelection(L,first,step,last) for lists/iterators
Expand Down
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SetPackageInfo( rec(

PackageName := "utils",
Subtitle := "Utility functions in GAP",
Version := "0.52",
Version := "0.53",
Date := "23/01/2018",

Persons := [
Expand Down
6 changes: 5 additions & 1 deletion tst/print.tst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ true
## SubSection 2.1.1
gap> s3 := SymmetricGroup( 3 );;
gap> L := KnownPropertiesOfObject( GeneratorsOfGroup( s3 ) );;
gap> PrintOneItemPerLine( L );
gap> L0 := [ "IsFinite", "IsSmallList", "IsGeneratorsOfMagmaWithInverses",
> "IsGeneratorsOfSemigroup", "IsSubsetLocallyFiniteGroup" ];;
gap> ForAll( L0, x -> x in L );
true
gap> PrintOneItemPerLine( L0 );
[ IsFinite,
IsSmallList,
IsGeneratorsOfMagmaWithInverses,
Expand Down

0 comments on commit 8db2c60

Please sign in to comment.