Skip to content

Commit

Permalink
Minor warning fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Aug 23, 2012
1 parent 00d3056 commit 10341ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/interfaces/modular/Machine.i
Expand Up @@ -72,7 +72,9 @@ APPLY_REGRESSION(CKernelRidgeRegression);
APPLY_REGRESSION(CLinearRidgeRegression);
APPLY_REGRESSION(CLeastSquaresRegression);
APPLY_REGRESSION(CLeastAngleRegression);
#ifdef HAVE_EIGEN3
APPLY_REGRESSION(CGaussianProcessRegression);
#endif //HAVE_EIGEN3

APPLY_STRUCTURED(CStructuredOutputMachine);
APPLY_STRUCTURED(CLinearStructuredOutputMachine);
Expand Down
3 changes: 1 addition & 2 deletions src/shogun/multiclass/MulticlassSVM.h
Expand Up @@ -155,8 +155,7 @@ class CMulticlassSVM : public CKernelMulticlassMachine
void set_linear_term(SGVector<float64_t> linear_term) { svm_proto()->set_linear_term(linear_term); }
// TODO remove in unnecessary here
/** set C parameters
* @param c_neg C for negatives
* @param c_pos C for positives
* @param C set regularization parameter
*/
void set_C(float64_t C) { svm_proto()->set_C(C,C); m_C = C; }
// TODO remove in unnecessary here
Expand Down

0 comments on commit 10341ca

Please sign in to comment.