| LIB "polymake.lib";
==> Welcome to polymake version
==> Copyright (c) 1997-2015
==> Ewgenij Gawrilow, Michael Joswig (TU Darmstadt)
==> http://www.polymake.org
// the lattice points of the unit square in the plane
list polygon=intvec(0,0),intvec(0,1),intvec(1,0),intvec(1,1);
// the triangulations of this lattice point configuration are computed
list triang=triangulations(polygon);
==> Evaluating Commandline Options ...
==> ... done.
==> 0
==> 0
triang;
==> [1]:
==> [1]:
==> 1,2,3
==> [2]:
==> 2,3,4
==> [2]:
==> [1]:
==> 1,3,4
==> [2]:
==> 1,2,4
|