Skip to content

Commit

Permalink
change version number in files and 2013 to 2014 in COPYRIGHT
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlin1 committed Dec 2, 2013
1 parent c99c54c commit dfaafcc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion COPYRIGHT
@@ -1,5 +1,5 @@

Copyright (c) 2000-2013 Chih-Chung Chang and Chih-Jen Lin
Copyright (c) 2000-2014 Chih-Chung Chang and Chih-Jen Lin
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README
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=317;
public static final int LIBSVM_VERSION=318;
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
Expand Up @@ -1293,7 +1293,7 @@ public class svm {
//
// construct and solve various formulations
//
public static final int LIBSVM_VERSION=317;
public static final int LIBSVM_VERSION=318;
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 317
#define LIBSVM_VERSION 318

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit dfaafcc

Please sign in to comment.