Skip to content

Commit

Permalink
modify version number from 3.16 to 3.17
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlin1 committed Mar 7, 2013
1 parent 2c2bf40 commit d2630a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ You may need to increase maximum Java heap size.
Library usages are similar to the C version. These functions are available:

public class svm {
public static final int LIBSVM_VERSION=316;
public static final int LIBSVM_VERSION=317;
public static svm_model svm_train(svm_problem prob, svm_parameter param);
public static void svm_cross_validation(svm_problem prob, svm_parameter param, int nr_fold, double[] target);
public static int svm_get_svm_type(svm_model model);
Expand Down
2 changes: 1 addition & 1 deletion java/libsvm/svm.m4
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ public class svm {
//
// construct and solve various formulations
//
public static final int LIBSVM_VERSION=316;
public static final int LIBSVM_VERSION=317;
public static final Random rand = new Random();
private static svm_print_interface svm_print_stdout = new svm_print_interface()
Expand Down
2 changes: 1 addition & 1 deletion svm.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef _LIBSVM_H
#define _LIBSVM_H

#define LIBSVM_VERSION 316
#define LIBSVM_VERSION 317

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit d2630a2

Please sign in to comment.