📄 constant.hxx
字号:
// *******************************
// *** CLASS CONSTANT FUNCTION ***
// *******************************
#include "loadtime.hxx"
class ConstantFunction : public LoadTimeFunction
/*
This class implement a function y = f(t) that is constant in time.
DESCRIPTION
'value' is the constant value of the function. It is a pointer, rather
than a number, so that its state (initialized or not) can be checked.
*/
{
private :
double* value ;
public :
ConstantFunction (int i,Domain* d) : LoadTimeFunction(i,d) {value=0 ;}
~ConstantFunction () { delete value ;}
double at (double) { return this->giveValue();}
double giveValue () ;
void instanciateYourself () { this->giveValue() ;}
} ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -