| Line | |
|---|
| 1 | /**
|
|---|
| 2 | * @file domain_decomposition_serial.hpp
|
|---|
| 3 | * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
|
|---|
| 4 | * @date Mon Jun 27 12:33:10 2011
|
|---|
| 5 | *
|
|---|
| 6 | * @brief Domain decomposition which gives all grid points
|
|---|
| 7 | * to one process
|
|---|
| 8 | *
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | #ifndef DOMAIN_DECOMPOSITION_SERIAL_HPP_
|
|---|
| 12 | #define DOMAIN_DECOMPOSITION_SERIAL_HPP_
|
|---|
| 13 |
|
|---|
| 14 | #include "comm/domain_decomposition.hpp"
|
|---|
| 15 |
|
|---|
| 16 | namespace VMG
|
|---|
| 17 | {
|
|---|
| 18 |
|
|---|
| 19 | class DomainDecompositionSerial : public DomainDecomposition
|
|---|
| 20 | {
|
|---|
| 21 | public:
|
|---|
| 22 | void Compute(Comm* comm, const Interface* interface, std::vector<GlobalIndices>& global);
|
|---|
| 23 | };
|
|---|
| 24 |
|
|---|
| 25 | }
|
|---|
| 26 |
|
|---|
| 27 | #endif /* DOMAIN_DECOMPOSITION_SERIAL_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.