// ============================================================================ // == == // == AMDiS - Adaptive multidimensional simulations == // == == // ============================================================================ // == == // == TU Dresden == // == == // == Institut für Wissenschaftliches Rechnen == // == Zellescher Weg 12-14 == // == 01069 Dresden == // == germany == // == == // ============================================================================ // == == // == https://gforge.zih.tu-dresden.de/projects/amdis/ == // == == // ============================================================================ /** \file ParallelDomainVec.h */ #ifndef AMDIS_PARALLELDOMAINVEC_H #define AMDIS_PARALLELDOMAINVEC_H #include "ParallelDomainBase.h" #include "ProblemVec.h" #include "BoundaryManager.h" namespace AMDiS { class ParallelDomainVec : public ParallelDomainBase { public: ParallelDomainVec(ProblemVec *problem, ProblemInstatVec *problemInstat); }; } #endif // AMDIS_PARALLELDOMAINVEC_H