restriction.h
来自「Flens库-一个在C++的矩阵运算库」· C头文件 代码 · 共 43 行
H
43 行
#ifndef POISSON_SOLVER_FLENS_IMPL_RESTRICTION_H#define POISSON_SOLVER_FLENS_IMPL_RESTRICTION_H 1#include <flens/flens.h>namespace flens {//-- dirichlet poisson 1d ------------------------------------------------------class Restriction;template <>struct TypeInfo<Restriction>{ typedef Restriction Impl; typedef double ElementType;};class Restriction : public GeneralMatrix<Restriction>{};//-- neumann poisson 1d --------------------------------------------------------class Restriction_NBC;template <>struct TypeInfo<Restriction_NBC>{ typedef Restriction_NBC Impl; typedef double ElementType;};class Restriction_NBC : public GeneralMatrix<Restriction_NBC>{};} // namespace flens#endif // POISSON_SOLVER_FLENS_IMPL_RESTRICTION_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?