| LIB "polymake.lib";
==> Welcome to polymake version
==> Copyright (c) 1997-2015
==> Ewgenij Gawrilow, Michael Joswig (TU Darmstadt)
==> http://www.polymake.org
list nf=ellipticNFDB(5);
// the vertices of the 5th normal form are
nf[1];
==> [1]:
==> 3,0
==> [2]:
==> 0,0
==> [3]:
==> 0,3
// its lattice points are
nf[2];
==> [1]:
==> 3,0
==> [2]:
==> 2,1
==> [3]:
==> 1,2
==> [4]:
==> 0,3
==> [5]:
==> 2,0
==> [6]:
==> 0,2
==> [7]:
==> 1,0
==> [8]:
==> 0,1
==> [9]:
==> 0,0
|