source:
issm/oecreview/Archive/11748-11766/ISSM-11754-11755.diff@
11991
Last change on this file since 11991 was 11991, checked in by , 13 years ago | |
---|---|
File size: 623 bytes |
-
proj/ice/larour/issm-uci-clean/trunk-jpl/src/c/objects/Numerics/Vector.cpp
73 73 Vector::Vector(Vec petsc_vec){ 74 74 75 75 if(petsc_vec==NULL){ 76 this->vector=N ULL;76 this->vector=NewVec(0); 77 77 } 78 78 else{ 79 79 /*copy vector*/ … … 215 215 bool Vector::IsEmpty(void){ 216 216 217 217 int M; 218 219 _assert_(this->vector); 218 220 this->GetSize(&M); 219 221 220 222 if(M==0)
Note:
See TracBrowser
for help on using the repository browser.