/** * @file domain_decomposition_serial.hpp * @author Julian Iseringhausen * @date Mon Jun 27 12:33:10 2011 * * @brief Domain decomposition which gives all grid points * to one process * */ #ifndef DOMAIN_DECOMPOSITION_SERIAL_HPP_ #define DOMAIN_DECOMPOSITION_SERIAL_HPP_ #include "comm/domain_decomposition.hpp" namespace VMG { class DomainDecompositionSerial : public DomainDecomposition { public: void Compute(Comm* comm, const Interface* interface, std::vector& global); }; } #endif /* DOMAIN_DECOMPOSITION_SERIAL_HPP_ */