From dc671da8b7ea23ad6128f6edcadd2cc028d0bdb3 Mon Sep 17 00:00:00 2001 From: Chih-Jen Lin Date: Tue, 5 Jan 2016 22:25:25 +0800 Subject: [PATCH] remove unnecessary tab in linear.cpp --- linear.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linear.cpp b/linear.cpp index b7bfeca..b21caf4 100644 --- a/linear.cpp +++ b/linear.cpp @@ -182,7 +182,7 @@ void l2r_lr_fun::Hv(double *s, double *Hs) { feature_node * const xi=x[i]; wa[i] = sparse_operator::dot(s, xi); - + wa[i] = C[i]*D[i]*wa[i]; sparse_operator::axpy(wa[i], xi, Hs); @@ -318,7 +318,7 @@ void l2r_l2_svc_fun::Hv(double *s, double *Hs) { feature_node * const xi=x[I[i]]; wa[i] = sparse_operator::dot(s, xi); - + wa[i] = C[I[i]]*wa[i]; sparse_operator::axpy(wa[i], xi, Hs); @@ -2347,7 +2347,7 @@ model* train(const problem *prob, const parameter *param) sub_prob.y[k] = +1; for(; kinit_sol != NULL) for(i=0;iw[i] = param->init_sol[i]; -- 2.50.1