関数realParameterNotNegative0 マニュアル

(The documentation of function realParameterNotNegative0)

Last Update: 2022/9/2


◆機能・用途(Purpose)

実数パラメータの値が0.0または負でなければならない旨の エラーメッセージを出力してプログラムを終了する。
Display a message to inform that the value of a real-number parameter must be 0.0 or negative, and finish the program as an error.


◆形式(Format)

#include <argument.h>
inline void realParameterNotNegative0
(const char ∗parameterName,const double parameterValue)


◆引数(Arguments)

parameterName パラメータ名。
A parameter name.
parameterValue パラメータ値。
The value of the parameter.


◆表示するメッセージ (The message displayed)

エラー : パラメータparameterNameの値として parameterValueが指定されましたが、 この値は0.0または負でなければなりません。
ERROR : parameterValue was specified for parameter "parameterName", which must be 0.0 or negative.


◆使用例(Example)

if(d>0.0){
     realParameterNotNegative0("d", d);
}