Ignore:
Timestamp:
Apr 16, 2013, 11:27:31 AM (13 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
177495
Parents:
e58835d
Message:

Save the whole domain decomposition instead of just the part for the current process.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/comm/domain_decomposition_serial.cpp

    re58835d rd6a338  
    3838using namespace VMG;
    3939
    40 void DomainDecompositionSerial::Compute(Comm* comm, const Interface* interface, std::vector<GlobalIndices>& global)
     40void DomainDecompositionSerial::Compute(Comm& comm, const Interface& interface, std::map<Index, std::vector<GlobalIndices> >& global)
    4141{
    42   global = interface->Global();
     42  global[0] = interface.Global();
    4343}
Note: See TracChangeset for help on using the changeset viewer.