Changeset 177495 for src/comm/comm.hpp


Ignore:
Timestamp:
Apr 17, 2013, 6:35:40 PM (13 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
4f3474
Parents:
d6a338
Message:

Implemented boundary values derived from continious problem.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/comm/comm.hpp

    rd6a338 r177495  
    3030
    3131#include <map>
    32 #include <list>
     32#include <vector>
    3333
    3434#include "base/defs.hpp"
     
    4141{
    4242
     43class BoundaryValue;
    4344class DomainDecomposition;
    4445class GlobalIndices;
     
    7071  virtual void CommSubgrid(Grid& grid_old, Grid& grid_new, const int& direction) = 0;
    7172  virtual void CommAddSubgrid(Grid& grid_old, Grid& grid_new, const int& direction) = 0;
     73  virtual std::vector<BoundaryValue> CommBoundaryValues() = 0;
    7274
    7375  virtual void CommToGhostsAsyncStart(Grid& grid) = 0;
     
    139141  const std::map<Index, std::vector<GlobalIndices> >& DecomposedGlobal() const {return decomposed_global;}
    140142
    141 
    142143protected:
    143144  const std::string& OutputPath();
Note: See TracChangeset for help on using the changeset viewer.