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

📄 pnone.h

📁 An object-oriented C++ implementation of Davidson method for finding a few selected extreme eigenpai
💻 H
字号:

#ifndef pNoneH
#define pNoneH

#include "../davidson/defaulttd.h"
#include "../davidson/potentialbase.h"

class PotentialNone: public PotentialBase
{
    public:

    	PotentialNone(){typV=0;};

        //returns V(x)=0.0
        ftyp operator()(const ftyp &) const;

        //returns V(x,y)=0.0
        ftyp operator()(const ftyp &, const ftyp &) const;

        //returns V(x,y,z)=0.0
        ftyp operator()(const ftyp &, const ftyp &, const ftyp &) const;
};

#endif

⌨️ 快捷键说明

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