"Source: Text/Geometry/Polyhedra.text";
"Line: 2311";
"Date: Mon Aug 27 15:44:26 2018";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Polyhedra.text, line: 2311
// Example: H152E18 ()
print "Example: H152E18";
ei := GetEchoInput();
SetEchoInput(true);
L := ToricLattice(3);
a := L ! [1,2,3];
a;
L eq Parent(a);
assert $1;
b := L ! [1/2,1,3/2];
a + b;
a eq b;
assert not $1;
a eq 2*b;
assert $1;
b/a;
SetEchoInput(ei);
