// eps is the stopping tolerance
//
// solution will be put in w
+//
+// See Appendix of LIBLINEAR paper, Fan et al. (2008)
#define GETI(i) (prob->y[i])
// To support weights for instances, use GETI(i) (i)
// eps is the stopping tolerance
//
// solution will be put in w
+//
+// See Algorithm 3 of Hsieh et al., ICML 2008
#undef GETI
#define GETI(i) (y[i]+1)
// eps is the stopping tolerance
//
// solution will be put in w
+//
+// See Yuan et al. (2010) and appendix of LIBLINEAR paper, Fan et al. (2008)
#undef GETI
#define GETI(i) (y[i]+1)
// eps is the stopping tolerance
//
// solution will be put in w
+//
+// See Yuan et al. (2010) and appendix of LIBLINEAR paper, Fan et al. (2008)
#undef GETI
#define GETI(i) (y[i]+1)