Changeset 16129


Ignore:
Timestamp:
09/12/13 12:45:00 (12 years ago)
Author:
utke
Message:

make this bcast call type consistent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/IoModel.cpp

    r16114 r16129  
    390390                                                        if(fread(&pscalar,sizeof(IssmPDouble),1,this->fid)!=1) _error_("could not read scalar ");
    391391                                                        ISSM_MPI_Bcast(&pscalar,1,ISSM_MPI_PDOUBLE,0,IssmComm::GetComm());
    392                                                         scalar=reCast<IssmDouble>(pscalar);
     392                                                        scalar=pscalar;
    393393                                                }
    394394
     
    490490                                case 3:
    491491                                        /*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;
    494494                                        /*create DoubleParam: */
    495495                                        this->constants->AddObject(new DoubleParam(record_enum,scalar));
Note: See TracChangeset for help on using the changeset viewer.