#ifndef FUNC_ICLOGLOG_H_ #define FUNC_ICLOGLOG_H_ #include /** * @short inverse complementary log log link * @see CLogLog *
 * cloglog(y) <- a + b*x
 * y <- icloglog(a + b*x)
 * 
*/ class ICLogLog : public InverseLinkFunc { public: ICLogLog (); double eval (std::vector const &args) const; double link (double y) const; double gradLink (double y) const; }; #endif /* FUNC_ICLOGLOG_H_ */