Skip to content

Commit 963d719

Browse files
committed
Tiny fix to ListToPoly
1 parent 2302868 commit 963d719

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gap/tools.gi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ InstallMethod( IsCompatiblePolyhedronList,
9090
function ( list )
9191
local i;
9292

93-
if not ForAll( [1,2,4,5], i -> list[i] in NonnegativeIntegers) then
93+
if not ForAll( [1,4,5], i -> list[i] in NonnegativeIntegers) then
9494
return Error( "The first five entries must be non-negative integers" );
9595
fi;
9696

0 commit comments

Comments
 (0)