prolongation.h

来自「Flens库-一个在C++的矩阵运算库」· C头文件 代码 · 共 43 行

H
43
字号
#ifndef POISSON_SOLVER_FLENS_IMPL_PROLONGATION_H#define POISSON_SOLVER_FLENS_IMPL_PROLONGATION_H 1#include <flens/flens.h>namespace flens {//-- dirichlet poisson 1d ------------------------------------------------------class Prolongation;template <>struct TypeInfo<Prolongation>{    typedef Prolongation Impl;    typedef double       ElementType;};class Prolongation    : public GeneralMatrix<Prolongation>{};//-- neumann poisson 1d --------------------------------------------------------class Prolongation_NBC;template <>struct TypeInfo<Prolongation_NBC>{    typedef Prolongation_NBC Impl;    typedef double           ElementType;};class Prolongation_NBC    : public GeneralMatrix<Prolongation_NBC>{};} // namespace flens#endif // POISSON_SOLVER_FLENS_IMPL_PROLONGATION_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?