Changeset 25910 for issm/trunk-jpl/src/c/classes/matrix/ElementVector.cpp
- Timestamp:
- 12/21/20 18:01:22 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/matrix/ElementVector.cpp
r20827 r25910 238 238 void ElementVector::InsertIntoGlobal(Vector<IssmDouble>* pf){/*{{{*/ 239 239 240 int i;241 IssmDouble* localvalues=NULL;242 243 240 if(this->fsize){ 244 241 /*first, retrieve values that are in the f-set from the g-set values vector: */ 245 localvalues=xNew<IssmDouble>(this->fsize);246 for(i =0;i<this->fsize;i++){242 IssmDouble* localvalues=xNew<IssmDouble>(this->fsize); 243 for(int i=0;i<this->fsize;i++){ 247 244 localvalues[i]=this->values[this->flocaldoflist[i]]; 248 245 }
Note:
See TracChangeset
for help on using the changeset viewer.