Changeset 16129
- Timestamp:
- 09/12/13 12:45:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/IoModel.cpp
r16114 r16129 390 390 if(fread(&pscalar,sizeof(IssmPDouble),1,this->fid)!=1) _error_("could not read scalar "); 391 391 ISSM_MPI_Bcast(&pscalar,1,ISSM_MPI_PDOUBLE,0,IssmComm::GetComm()); 392 scalar= reCast<IssmDouble>(pscalar);392 scalar=pscalar; 393 393 } 394 394 … … 490 490 case 3: 491 491 /*scalar. get it from cpu 0 */ 492 ISSM_MPI_Bcast(& scalar,1,ISSM_MPI_DOUBLE,0,IssmComm::GetComm());493 492 ISSM_MPI_Bcast(&pscalar,1,ISSM_MPI_PDOUBLE,0,IssmComm::GetComm()); 493 scalar=pscalar; 494 494 /*create DoubleParam: */ 495 495 this->constants->AddObject(new DoubleParam(record_enum,scalar));
Note:
See TracChangeset
for help on using the changeset viewer.