Changeset 14569
- Timestamp:
- 04/15/13 11:27:14 (12 years ago)
- Location:
- issm/trunk-jpl/src/c/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/IoModel.cpp
r14512 r14569 32 32 this->my_nodes=NULL; 33 33 this->my_vertices=NULL; 34 34 35 this->singlenodetoelementconnectivity=NULL; 35 36 this->numbernodetoelementconnectivity=NULL; … … 66 67 this->my_nodes=NULL; 67 68 this->my_vertices=NULL; 69 68 70 this->singlenodetoelementconnectivity=NULL; 69 71 this->numbernodetoelementconnectivity=NULL; … … 1267 1269 1268 1270 int my_rank; 1269 int 1270 int 1271 int lastindex,index; 1272 int record_length; 1271 1273 1272 1274 /*recover my_rank:*/ -
issm/trunk-jpl/src/c/classes/IoModel.h
r13623 r14569 24 24 IssmDouble **data; //this dataset holds temporary data, memory intensive. 25 25 26 /*This data needs to stay memory resident at all time, even if it's memory intensive: */ 27 FILE *fid; //pointer to input file 26 /*pointer to input file*/ 27 FILE *fid; 28 29 /*Partitioning*/ 28 30 bool *my_elements; 29 31 bool *my_nodes; 30 32 int *my_vertices; 33 34 /*Connectivity tables*/ 31 35 int *singlenodetoelementconnectivity; 32 36 int *numbernodetoelementconnectivity; 33 37 34 38 /*Data to synchronize through low level object drivers: */ 35 int nodecounter; //keep track of how many nodes are being created in each analysis type36 int loadcounter; //keep track of how many loads are being created in each analysis type37 int constraintcounter; //keep track of how many constraints are being created in each analysis type39 int nodecounter; //keep track of how many nodes are being created in each analysis 40 int loadcounter; //keep track of how many loads are being created in each analysis 41 int constraintcounter; //keep track of how many constraints are being created in each analysis 38 42 39 43 /*for AD mode: to keep track of our independent variables we fetch:*/ 40 bool *independents;41 DataSet *independent_objects;44 bool *independents; 45 DataSet *independent_objects; 42 46 43 47 /*Methods*/
Note:
See TracChangeset
for help on using the changeset viewer.