Ignore:
Timestamp:
10/10/12 23:23:14 (12 years ago)
Author:
Eric.Larour
Message:

CHG: get rid of MyRank routines in Params.
Keep transitioning from extern for my_rank and num_procs to IssmComm static class

File:
1 edited

Legend:

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

    r13416 r13608  
    178178void  Vertex::SetClone(int* minranks){
    179179
    180         extern int my_rank;
     180        int my_rank2;
     181       
     182        /*recover my_rank2:*/
     183        my_rank2=IssmComm::GetRank();
    181184
    182         if (minranks[this->sid]==my_rank){
     185        if (minranks[this->sid]==my_rank2){
    183186                this->clone=false;
    184187        }
Note: See TracChangeset for help on using the changeset viewer.