#ifndef FUNC_POW_H_ #define FUNC_POW_H_ #include /** * @short Power function * If y <- pow(x,z) and x is negative, then z must be an integer *
 * y <- pow(x,z)
 * y = x^z
 * 
*/ class Pow : public ScalarFunc { public: Pow (); double eval (std::vector const &args) const; bool checkParameterValue (std::vector const &args) const; }; #endif /* FUNC_POW_H_ */