#ifndef FUNC_SUBTRACT_H_ #define FUNC_SUBTRACT_H_ #include /** * @short Difference of two scalars * * The Subtract function implements the infix operator "-" in the * BUGS language. *
 * y <- x - z
 * 
*/ class Subtract : public ScalarFunc { public: Subtract (); double eval (std::vector const &args) const; bool isDiscreteValued(std::vector const &args) const; }; #endif /* FUNC_SUBTRACT_H_ */