📄 dp2d_gs.cc
字号:
#include <poisson_solver/flens_impl.h>#include <dirichlet_poisson.h>using namespace flens;using namespace std;typedef DirichletPoisson2D MatType;typedef GridVector2D VecType;typedef GaussSeidelRedBlack<MatType, VecType> Smoother;intmain(){ int l = 11; int rh = (1<<l); MatType A(rh); VecType f(rh), u(rh), solution(rh); problem2(f, u, solution); Smoother S(A, f); errorStat(0, A, f, u, solution); for (int it=1; it<=10; ++it) { u = S*u; errorStat(it, A, f, u, solution); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -