Changeset 7444
- Timestamp:
- 02/14/11 17:01:14 (14 years ago)
- Location:
- issm/trunk/src/c/objects
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/IoModel.cpp
r7408 r7444 76 76 xfree((void**)&this->gridonicesheet); 77 77 xfree((void**)&this->gridoniceshelf); 78 xfree((void**)&this->gridonwater); 78 79 xfree((void**)&this->pressureload); 79 80 xfree((void**)&this->spcvelocity); … … 292 293 this->gridonicesheet=NULL; 293 294 this->gridoniceshelf=NULL; 295 this->gridonwater=NULL; 294 296 295 297 this->drag_type=0; -
issm/trunk/src/c/objects/IoModel.h
r7408 r7444 89 89 double* gridonicesheet; 90 90 double* gridoniceshelf; 91 double* gridonwater; 91 92 92 93 /*friction: */ -
issm/trunk/src/c/objects/NodeSets.cpp
r5057 r7444 30 30 /*FUNCTION NodeSets::Echo{{{1*/ 31 31 void NodeSets::Echo(void){ 32 33 int i; 34 35 printf("\nNodeSets echo:\n"); 36 printf(" gsize: %i\n",gsize); 37 printf(" fsize: %i\n",fsize); 38 printf(" ssize: %i\n",ssize); 39 printf(" pv_f: %p\n",pv_f); 40 printf(" pv_s: %p\n",pv_s); 41 42 }/*}}}*/ 43 /*FUNCTION NodeSets::DeepEcho{{{1*/ 44 void NodeSets::DeepEcho(void){ 32 45 33 46 int i; -
issm/trunk/src/c/objects/NodeSets.h
r5057 r7444 26 26 27 27 void Echo(); 28 void DeepEcho(void); 28 29 int GetGSize(); 29 30 int GetFSize();
Note:
See TracChangeset
for help on using the changeset viewer.