| Line | |
|---|
| 1 | /**
|
|---|
| 2 | * @file gsrb.hpp
|
|---|
| 3 | * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
|
|---|
| 4 | * @date Mon Apr 18 13:08:36 2011
|
|---|
| 5 | *
|
|---|
| 6 | * @brief Gauss-Seidel Red-Black method
|
|---|
| 7 | *
|
|---|
| 8 | */
|
|---|
| 9 |
|
|---|
| 10 | #ifndef GSRB_HPP_
|
|---|
| 11 | #define GSRB_HPP_
|
|---|
| 12 |
|
|---|
| 13 | #include "smoother/smoother.hpp"
|
|---|
| 14 |
|
|---|
| 15 | namespace VMG
|
|---|
| 16 | {
|
|---|
| 17 |
|
|---|
| 18 | class Multigrid;
|
|---|
| 19 |
|
|---|
| 20 | class GaussSeidelRB : public Smoother
|
|---|
| 21 | {
|
|---|
| 22 | private:
|
|---|
| 23 | void Compute(Grid& sol, Grid& rhs);
|
|---|
| 24 | };
|
|---|
| 25 |
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
| 28 | #endif /* GSRB_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.