Changeset 19138 for issm/trunk-jpl/src/c/classes/IoModel.cpp
- Timestamp:
- 02/20/15 10:02:35 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/IoModel.cpp
r18879 r19138 21 21 IoModel::IoModel(){/*{{{*/ 22 22 this->fid=NULL; 23 this->solution_enum=-1; 23 24 this->data=NULL; 24 25 this->independents=NULL; … … 50 51 } 51 52 /*}}}*/ 52 IoModel::IoModel(FILE* iomodel_handle, bool trace,IssmPDouble* X){/*{{{*/53 IoModel::IoModel(FILE* iomodel_handle,int solution_enum_in,bool trace,IssmPDouble* X){/*{{{*/ 53 54 54 55 bool autodiff=false; … … 60 61 /*Check that Enums are Synchronized*/ 61 62 this->CheckEnumSync(); 63 64 /*Keep track of solution*/ 65 this->solution_enum = solution_enum_in; 62 66 63 67 /*Initialize data: */ … … 240 244 } 241 245 /*}}}*/ 242 void IoModel::Constant(bool* poutput,int constant_enum){/*{{{*/246 void IoModel::Constant(bool* poutput,int constant_enum){/*{{{*/ 243 247 244 248 _assert_(constant_enum>=0); … … 248 252 } 249 253 /*}}}*/ 250 void IoModel::Constant(int* poutput,int constant_enum){/*{{{*/254 void IoModel::Constant(int* poutput,int constant_enum){/*{{{*/ 251 255 252 256 _assert_(constant_enum>=0); … … 256 260 } 257 261 /*}}}*/ 258 void IoModel::Constant(IssmDouble* poutput,int constant_enum){/*{{{*/262 void IoModel::Constant(IssmDouble* poutput,int constant_enum){/*{{{*/ 259 263 260 264 _assert_(constant_enum>=0); … … 264 268 } 265 269 /*}}}*/ 266 void IoModel::Constant(char** poutput,int constant_enum){/*{{{*/270 void IoModel::Constant(char** poutput,int constant_enum){/*{{{*/ 267 271 268 272 _assert_(constant_enum>=0); … … 291 295 } 292 296 /*}}}*/ 293 void IoModel::StartTrace(bool trace){/*{{{*/297 void IoModel::StartTrace(bool trace){/*{{{*/ 294 298 295 299 bool autodiff = false; … … 331 335 } 332 336 /*}}}*/ 333 void IoModel::DeclareIndependents(bool trace,IssmPDouble* X){/*{{{*/337 void IoModel::DeclareIndependents(bool trace,IssmPDouble* X){/*{{{*/ 334 338 335 339 int i; … … 1516 1520 } 1517 1521 /*}}}*/ 1518 void IoModel::FetchDataToInput(Elements* elements,int vector_enum,IssmDouble default_value){/*{{{*/1522 void IoModel::FetchDataToInput(Elements* elements,int vector_enum,IssmDouble default_value){/*{{{*/ 1519 1523 1520 1524 /*intermediary: */ … … 1541 1545 } 1542 1546 /*}}}*/ 1543 void IoModel::FetchDataToInput(Elements* elements,int vector_enum){/*{{{*/1547 void IoModel::FetchDataToInput(Elements* elements,int vector_enum){/*{{{*/ 1544 1548 1545 1549 /*intermediary: */ … … 1613 1617 } 1614 1618 /*}}}*/ 1615 void IoModel::LastIndex(int *pindex){/*{{{*/1619 void IoModel::LastIndex(int *pindex){/*{{{*/ 1616 1620 1617 1621 int my_rank; … … 1649 1653 } 1650 1654 /*}}}*/ 1651 /*FUNCTION IoModel::SetFilePointerToData{{{*/ 1652 FILE* IoModel::SetFilePointerToData(int* pcode,int* pvector_type, int data_enum){ 1655 FILE* IoModel::SetFilePointerToData(int* pcode,int* pvector_type, int data_enum){/*{{{*/ 1653 1656 1654 1657 int my_rank;
Note:
See TracChangeset
for help on using the changeset viewer.