Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelyr committed Dec 1, 2023
1 parent 5ab2a22 commit d568db0
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/describe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ 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";
#if defined(OMEGA_H_USE_KOKKOS)
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";
#endif

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

0 comments on commit d568db0

Please sign in to comment.