- Timestamp:
- 11/01/19 12:01:57 (5 years ago)
- Location:
- issm/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/c
- Property svn:ignore
-
issm/trunk/src/c/modules/CreateNodalConstraintsx/CreateNodalConstraintsx.cpp
r15396 r24313 8 8 #include "../../toolkits/toolkits.h" 9 9 10 void CreateNodalConstraintsx( Vector<IssmDouble>** pys, Nodes* nodes ,int configuration_type){10 void CreateNodalConstraintsx( Vector<IssmDouble>** pys, Nodes* nodes){ 11 11 12 12 bool oldalloc = false; … … 20 20 21 21 /*figure out how many dofs we have: */ 22 ssize=nodes->NumberOfDofs( configuration_type,SsetEnum);23 slocalsize = nodes->NumberOfDofsLocal( configuration_type,SsetEnum);22 ssize=nodes->NumberOfDofs(SsetEnum); 23 slocalsize = nodes->NumberOfDofsLocal(SsetEnum); 24 24 25 25 /*allocate:*/ … … 33 33 for(int i=0;i<nodes->Size();i++){ 34 34 Node* node=(Node*)nodes->GetObjectByOffset(i); 35 if (node->InAnalysis(configuration_type)){ 36 node->CreateNodalConstraints(ys); 37 } 35 node->CreateNodalConstraints(ys); 38 36 } 39 37
Note:
See TracChangeset
for help on using the changeset viewer.