#ifndef FUNC_EQUALS_H_ #define FUNC_EQUALS_H_ #include /** * @short Test for equality *
 * y <- equals(a,b)
 * y = 1 if a==b
 *     0 if a!=b
 * 
*/ class Equals:public ScalarFunc { public: Equals (); double eval (std::vector const &args) const; /** Returns true */ bool isDiscreteValued(std::vector const &args) const; }; #endif /* FUNC_EQUALS_H_ */