Skip to content

Commit

Permalink
removed shapes
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelyr committed Dec 1, 2023
1 parent aedd985 commit 5ab2a22
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/describe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ int main(int argc, char** argv)
for(int dim=0; dim < mesh.dim(); dim++)
oss << "(" << dim << ", " << mesh.imbalance(dim) << ")\n";

oss << "\nShapes:\n";
oss << "Num Pyrams: " << mesh.npyrams() << "\n";
oss << "Num Wedges: " << mesh.nwedges() << "\n";
oss << "Num Hexs: " << mesh.nhexs() << "\n";
oss << "Num Tets: " << mesh.ntets() << "\n";
oss << "Num Quads: " << mesh.nquads() << "\n";
oss << "Num Tris: " << mesh.ntris() << "\n";
// oss << "\nShapes:\n";
// oss << "Num Pyrams: " << mesh.npyrams() << "\n";
// oss << "Num Wedges: " << mesh.nwedges() << "\n";
// oss << "Num Hexs: " << mesh.nhexs() << "\n";
// oss << "Num Tets: " << mesh.ntets() << "\n";
// oss << "Num Quads: " << mesh.nquads() << "\n";
// oss << "Num Tris: " << mesh.ntris() << "\n";

oss << "\nTags by Dimension: (Dim, Tag, Size per Entity)\n";
for (int dim=0; dim < mesh.dim(); dim++)
Expand Down

0 comments on commit 5ab2a22

Please sign in to comment.