Ignore:
Timestamp:
Dec 8, 2011, 12:53:58 PM (14 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
76e019
Parents:
1610dc
Message:

Work on a red-black communication routine to half the communication amount.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@1247 5161e1c8-67bf-11de-9fd5-51895aff932f

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/comm/mpi/key.cpp

    r1610dc r97c25dd  
    1919VMG::MPI::Key::Key()
    2020{
     21}
     22
     23VMG::MPI::Key::Key(const VMG::MPI::Key& other)
     24{
     25  this->int_keys.assign(other.int_keys.begin(), other.int_keys.end());
     26  this->addr_keys.assign(other.addr_keys.begin(), other.addr_keys.end());
    2127}
    2228
     
    8692    if (this->addr_keys[i] < other.addr_keys[i])
    8793      return true;
    88     else if (this->addr_keys[i] > other.addr_keys[i])
     94    else if (this-> addr_keys[i] > other.addr_keys[i])
    8995      return false;
    9096
Note: See TracChangeset for help on using the changeset viewer.