Navigation Menu

Skip to content

Commit

Permalink
update version number in README, svm.m4, and svm.h to 3.22
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlin1 committed Dec 21, 2016
1 parent 15df281 commit a056dc6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README
Expand Up @@ -667,7 +667,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=321;
public static final int LIBSVM_VERSION=322;
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
Binary file modified java/libsvm.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion java/libsvm/svm.java
Expand Up @@ -1293,7 +1293,7 @@ public class svm {
//
// construct and solve various formulations
//
public static final int LIBSVM_VERSION=321;
public static final int LIBSVM_VERSION=322;
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 java/libsvm/svm.m4
Expand Up @@ -1293,7 +1293,7 @@ public class svm {
//
// construct and solve various formulations
//
public static final int LIBSVM_VERSION=321;
public static final int LIBSVM_VERSION=322;
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
@@ -1,7 +1,7 @@
#ifndef _LIBSVM_H
#define _LIBSVM_H

#define LIBSVM_VERSION 321
#define LIBSVM_VERSION 322

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit a056dc6

Please sign in to comment.