#ifndef FUNC_CLOGLOG_H_ #define FUNC_CLOGLOG_H_ #include /** * @short the complementary log log link function * @see ICLogLog *
 * y <- cloglog(p)
 * y = log(-log(1-p)) for 0 < p < 1
 * 
*/ class CLogLog : public ScalarFunc { public: CLogLog (); double eval (std::vector const &args) const; bool checkParameterValue (std::vector const &args) const; }; #endif /* FUNC_CLOGLOG_H_ */