From 2ab0360d5dc3b5b595139e4b37db01b4771173e9 Mon Sep 17 00:00:00 2001 From: Angelyr Date: Fri, 1 Dec 2023 16:19:28 -0500 Subject: [PATCH] print last mesh family --- src/describe.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/describe.cpp b/src/describe.cpp index 3f699c842..242ce06e4 100644 --- a/src/describe.cpp +++ b/src/describe.cpp @@ -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++)