Skip to content

Commit

Permalink
Update the version number to 3.35
Browse files Browse the repository at this point in the history
  • Loading branch information
chcwww committed Aug 30, 2024
1 parent 2ccf205 commit a19c318
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,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=334;
public static final int LIBSVM_VERSION=335;
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 @@ -1295,7 +1295,7 @@ public class svm {
//
// construct and solve various formulations
//
public static final int LIBSVM_VERSION=334;
public static final int LIBSVM_VERSION=335;
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 python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

PACKAGE_DIR = "libsvm"
PACKAGE_NAME = "libsvm-official"
VERSION = "3.34.0"
VERSION = "3.35.0"
cpp_dir = "cpp-source"
# should be consistent with dynamic_lib_name in libsvm/svm.py
dynamic_lib_name = "clib"
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 334
#define LIBSVM_VERSION 335

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit a19c318

Please sign in to comment.