localfunction.h
来自「根据LDPC码中码子的构造方法中的PEG算法」· C头文件 代码 · 共 20 行
H
20 行
/***************************************************************** * * abstract class representing a local function in a function node * *****************************************************************/ #ifndef LOCALFUNCTION_H#define LOCALFUNCTION_Hclass LocalFunction {public: //virtual mehtod to be implemented by subclasses. getResul should return the function value for a given variableValues[] virtual double getResult(const int *args, int length) = 0;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?