Skip to content

Commit

Permalink
Removed extra left paren
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Jul 17, 2012
1 parent 0771067 commit f2bcaa9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -66,7 +66,7 @@ bool CMultitaskTraceLogisticRegression::train_machine(CFeatures* data)
m_tasks_c = model.c;
#else
SG_WARNING("Please install Eigen3 to use MultitaskTraceLogisticRegression\n");
m_tasks_w = SGMatrix<float64_t>((((CDotFeatures*)features)->get_dim_feature_space(), options.n_tasks);
m_tasks_w = SGMatrix<float64_t>(((CDotFeatures*)features)->get_dim_feature_space(), options.n_tasks);
m_tasks_c = SGVector<float64_t>(options.n_tasks);
#endif

Expand Down

0 comments on commit f2bcaa9

Please sign in to comment.