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.hpp

    re58835d rd6a338  
    3030#define DOMAIN_DECOMPOSITION_HPP_
    3131
     32#include <map>
    3233#include <vector>
     34
     35#include "base/index.hpp"
     36#include "grid/grid_properties.hpp"
    3337
    3438namespace VMG
     
    3640
    3741class Comm;
    38 class GlobalIndices;
    3942class Interface;
    4043class Multigrid;
     
    4649  virtual ~DomainDecomposition() {}
    4750
    48   virtual void Compute(Comm* comm, const Interface* interface, std::vector<GlobalIndices>& global) = 0;
     51  virtual void Compute(Comm& comm, const Interface& interface, std::map<Index, std::vector<GlobalIndices> >& global) = 0;
    4952};
    5053
Note: See TracChangeset for help on using the changeset viewer.