I'm trying to create an order polytope from the face lattice of a polytope. I'm using the following code:
$polygon = n_gon(3);
$lattice = $polygon->HASSE_DIAGRAM;
$orderpoly = order_polytope($lattice);
I get an error message:
ERROR: no matching overloaded instance of Polymake::polytope::order_polytope(Lattice<BasicDecoration, Sequential>)
What am I doing wrong?