Skip to content
Snippets Groups Projects
Commit c6ccde5a authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

warning -> info for missing periodic counterparts

parent dc2bf04a
No related branches found
No related tags found
No related merge requests found
......@@ -152,8 +152,12 @@ void readMSHPeriodicNodes(FILE *fp, GModel *gm)
if (completePer) s->correspondingVertices[mv1] = mv2;
}
if (!completePer) {
if (!s) Msg::Warning("Could not find periodic slave entity %d of dimension %d",slave,dim);
if (!m) Msg::Warning("Could not find periodic master entity %d of dimension %d",master,dim);
if (!s)
Msg::Info("Could not find periodic slave entity %d of dimension %d",
slave, dim);
if (!m)
Msg::Info("Could not find periodic master entity %d of dimension %d",
master, dim);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment