Skip to content

Commit

Permalink
Don't use GAP 4.9 multi-arg lambdas
Browse files Browse the repository at this point in the history
Resolves #27
  • Loading branch information
fingolfin committed May 11, 2018
1 parent c25979f commit 10dac21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ This file describes changes in the GAP package 'polycyclic'.
X.YY (YYYY-MM-D)

* Fixed a bug in OneCoboundariesCR which lead to an error in OneCohomologyCR
* Restored compatibility with GAP versions before 4.9
* ...

2.13.1 (2018-04-27)
Expand Down
2 changes: 1 addition & 1 deletion gap/exam/generic.gi
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ InstallGlobalFunction( UnitriangularPcpGroup, function( n, p )
od;

# read of pc presentation
pairs := ListX([1..n-1], i -> [1..n-i], {i,j} -> [j, i+j]);
pairs := ListX([1..n-1], i -> [1..n-i], function(i,j) return [j, i+j]; end);
for i in [1..l] do

# commutators
Expand Down

0 comments on commit 10dac21

Please sign in to comment.