| Line | |
|---|
| 1 | /**
|
|---|
| 2 | * @file domain_decomposition_serial.cpp
|
|---|
| 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 | #ifdef HAVE_CONFIG_H
|
|---|
| 12 | #include <config.h>
|
|---|
| 13 | #endif
|
|---|
| 14 |
|
|---|
| 15 | #include "base/interface.hpp"
|
|---|
| 16 | #include "comm/domain_decomposition_serial.hpp"
|
|---|
| 17 | #include "grid/grid.hpp"
|
|---|
| 18 | #include "grid/multigrid.hpp"
|
|---|
| 19 |
|
|---|
| 20 | using namespace VMG;
|
|---|
| 21 |
|
|---|
| 22 | void DomainDecompositionSerial::Compute(Comm* comm, const Interface* interface, std::vector<GlobalIndices>& global)
|
|---|
| 23 | {
|
|---|
| 24 | global = interface->Global();
|
|---|
| 25 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.