Skip to content

Commit

Permalink
print last mesh family
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelyr committed Dec 1, 2023
1 parent ee5b76a commit 2ab0360
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/describe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ int main(int argc, char** argv)
for(int dim=0; dim < mesh.dim(); dim++)
oss << "(" << dim << ", " << mesh.imbalance(dim) << ")\n";

oss << "\nMesh Family: (Dim, Family)\n";
for(int dim=0; dim < mesh.dim(); dim++)
oss << "(" << dim << ", " << Omega_h::topological_singular_name(mesh.family(), dim) << ")\n";
oss << "\nMesh Family: " << Omega_h::topological_singular_name(mesh.family(), mesh.dim()-1) << "\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 2ab0360

Please sign in to comment.