⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 restriction.h

📁 Flens库-一个在C++的矩阵运算库
💻 H
字号:
#ifndef POISSON_SOLVER_KERNEL_IMPL_RESTRICTION_H#define POISSON_SOLVER_KERNEL_IMPL_RESTRICTION_H 1namespace flens {//-- dirichlet poisson 1d ------------------------------------------------------template <typename V, typename VC>    void    dp1d_restriction(const DenseVector<V> &v, DenseVector<VC> &vc);//-- neumann poisson 1d --------------------------------------------------------template <typename V, typename VC>    void    np1d_restriction(const DenseVector<V> &v, DenseVector<VC> &vc);//-- dirichlet poisson 2d ------------------------------------------------------template <typename V, typename VC>    void    dp2d_restriction_hw(const GeMatrix<V> &v, GeMatrix<VC> &vc);//-- neumann poisson 2d --------------------------------------------------------template <typename V, typename VC>    void    np2d_restriction_hw(const GeMatrix<V> &v, GeMatrix<VC> &vc);} // namespace flens#include <poisson_solver/kernel_impl/restriction.tcc>#endif // POISSON_SOLVER_KERNEL_IMPL_RESTRICTION_H

⌨️ 快捷键说明

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