Changeset 5774
- Timestamp:
- 09/13/10 13:50:03 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Node.cpp
r5772 r5774 569 569 count++; 570 570 } 571 571 572 572 /*Add values into constraint vector: */ 573 573 VecSetValues(ys,this->indexing.ssize,this->indexing.sdoflist,values,INSERT_VALUES); … … 813 813 814 814 dofcount=*pdofcount; 815 815 816 /*Initialize: */ 817 if(setenum==FsetEnum) this->indexing.InitSet(setenum); 818 if(setenum==SsetEnum) this->indexing.InitSet(setenum); 819 820 821 /*For clone nodfs, don't distribute dofs, we will get them from another cpu in UpdateCloneDofs!*/ 816 822 if(indexing.clone){ 817 /*This node is a clone! Don't distribute dofs, it will get them from another cpu!*/818 823 return; 819 824 } … … 828 833 } 829 834 else if(setenum==FsetEnum){ 830 this->indexing.InitSet(setenum);831 835 for(i=0;i<this->indexing.fsize;i++){ 832 836 indexing.fdoflist[i]=dofcount+i; … … 835 839 } 836 840 else if(setenum==SsetEnum){ 837 this->indexing.InitSet(setenum);838 841 for(i=0;i<this->indexing.ssize;i++){ 839 842 indexing.sdoflist[i]=dofcount+i;
Note:
See TracChangeset
for help on using the changeset viewer.