Skip to content
Snippets Groups Projects
Commit 012cbab0 authored by mattijs's avatar mattijs
Browse files

debug message

parent 380e3192
No related merge requests found
...@@ -38,6 +38,11 @@ const labelListList& primitiveMesh::pointFaces() const ...@@ -38,6 +38,11 @@ const labelListList& primitiveMesh::pointFaces() const
{ {
if (!pfPtr_) if (!pfPtr_)
{ {
if (debug)
{
Pout<< "primitiveMesh::pointFaces() : "
<< "calculating pointFaces" << endl;
}
// Invert faces() // Invert faces()
pfPtr_ = new labelListList(nPoints()); pfPtr_ = new labelListList(nPoints());
invertManyToMany(nPoints(), faces(), *pfPtr_); invertManyToMany(nPoints(), faces(), *pfPtr_);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment