Skip to content

Commit d2630a2

Browse files
committed
modify version number from 3.16 to 3.17
1 parent 2c2bf40 commit d2630a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ You may need to increase maximum Java heap size.
668668
Library usages are similar to the C version. These functions are available:
669669

670670
public class svm {
671-
public static final int LIBSVM_VERSION=316;
671+
public static final int LIBSVM_VERSION=317;
672672
public static svm_model svm_train(svm_problem prob, svm_parameter param);
673673
public static void svm_cross_validation(svm_problem prob, svm_parameter param, int nr_fold, double[] target);
674674
public static int svm_get_svm_type(svm_model model);

java/libsvm/svm.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1292,7 +1292,7 @@ public class svm {
12921292
//
12931293
// construct and solve various formulations
12941294
//
1295-
public static final int LIBSVM_VERSION=316;
1295+
public static final int LIBSVM_VERSION=317;
12961296
public static final Random rand = new Random();
12971297
12981298
private static svm_print_interface svm_print_stdout = new svm_print_interface()

svm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _LIBSVM_H
22
#define _LIBSVM_H
33

4-
#define LIBSVM_VERSION 316
4+
#define LIBSVM_VERSION 317
55

66
#ifdef __cplusplus
77
extern "C" {

0 commit comments

Comments
 (0)