"Source: Text/Topology/SmpCpx.text";
"Line: 341";
"Date: Tue Jun  7 22:27:15 2016";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Topology/SmpCpx.text, line: 341
// Example: H149E8 ()
print "Example: H149E8";
ei := GetEchoInput();
SetEchoInput(true);
sc := SimplicialComplex([{1,2,3},{1,2,4},{1,3,4},{2,3,4},{1,5},{2,5}]);
sc eq Shift(sc,2);
assert not $1;
sc eq Shift(Shift(sc,2),-2);
assert $1;
circ1 := Boundary(SimplicialComplex([{1,2,3}]));
circ2 := Boundary(SimplicialComplex([{"a","b","c"}]));
circ1 eq circ2;
assert not $1;
SetEchoInput(ei);
