source:
src/smoother/gs.hpp@
2fad0e0
| Last change on this file since 2fad0e0 was 48b662, checked in by , 14 years ago | |
|---|---|
|
|
| File size: 355 bytes | |
| Line | |
|---|---|
| 1 | /** |
| 2 | * @file gs.hpp |
| 3 | * @author Julian Iseringhausen <isering@ins.uni-bonn.de> |
| 4 | * @date Mon Apr 18 13:07:59 2011 |
| 5 | * |
| 6 | * @brief Gauss-Seidel method |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | #ifndef GS_HPP_ |
| 11 | #define GS_HPP_ |
| 12 | |
| 13 | #include "smoother/smoother.hpp" |
| 14 | |
| 15 | namespace VMG |
| 16 | { |
| 17 | |
| 18 | class GaussSeidel : public Smoother |
| 19 | { |
| 20 | private: |
| 21 | void Compute(Grid& sol, Grid& rhs); |
| 22 | }; |
| 23 | |
| 24 | } |
| 25 | |
| 26 | #endif /* GS_HPP_ */ |
Note:
See TracBrowser
for help on using the repository browser.
