| 188 | */ |
| 189 | |
| 190 | void PolyhedralFan::removeAllLowerDimensional() |
| 191 | { |
| 192 | if(!cones.empty()) |
| 193 | { |
| 194 | int d=getMaxDimension(); |
| 195 | PolyhedralConeList::iterator i=cones.begin(); |
| 196 | while(i!=cones.end() && i->dimension()==d)i++; |
| 197 | cones.erase(i,cones.end()); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | |
| 202 | PolyhedralFan PolyhedralFan::facetComplex()const |