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

pp

parent 124bf8fd
No related branches found
No related tags found
No related merge requests found
...@@ -84,14 +84,14 @@ class dofManager{ ...@@ -84,14 +84,14 @@ class dofManager{
} }
inline void numberDof(long int ent, int type) inline void numberDof(long int ent, int type)
{ {
Dof key(ent, type); Dof key(ent, type);
if(fixed.find(key) != fixed.end()) return; if(fixed.find(key) != fixed.end()) return;
// if (constraints.find(key) != constraints.end()) return; // if (constraints.find(key) != constraints.end()) return;
std::map<Dof, int> :: iterator it = unknown.find(key); std::map<Dof, int> :: iterator it = unknown.find(key);
if (it == unknown.end()){ if (it == unknown.end()){
unsigned int size = unknown.size(); unsigned int size = unknown.size();
unknown[key] = size; unknown[key] = size;
} }
} }
inline void numberVertex(MVertex*v, int iComp, int iField) inline void numberVertex(MVertex*v, int iComp, int iField)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment