#ifndef FUNC_DIVIDE_H_ #define FUNC_DIVIDE_H_ #include /** * The Divide function implements the infix operator "/" in the BUGS * language * @short Ratio of two scalars *
 * y <- a/b
 * y = a/b for b != 0
 * 
*/ class Divide:public ScalarFunc { public: Divide (); double eval (std::vector const &args) const; bool checkParameterValue (std::vector const &args) const; }; #endif /* FUNC_DIVIDE_H_ */