| 30 | } |
| 31 | |
| 32 | void BoundaryChecker::check_boundary_faces(FEMeshPtr mesh) { |
| 33 | const size_t num_boundary_faces = mesh->getNbrBoundaryFaces(); |
| 34 | for (size_t i=0; i<num_boundary_faces; i++) { |
| 35 | VectorI face = mesh->getBoundaryFace(i); |
| 36 | for (size_t j=0; j<face.size(); j++) { |
| 37 | ASSERT_TRUE(mesh->isBoundaryNode(face[j])); |
| 38 | } |
| 39 | } |
| 40 | } |
nothing calls this directly
no test coverage detected