]> granicus.if.org Git - liblinear/commitdiff
fixed type of struct problem y
authorSinacam <stinkingmadgod@gmail.com>
Fri, 9 Jul 2021 10:31:34 +0000 (18:31 +0800)
committerSinacam <stinkingmadgod@gmail.com>
Fri, 9 Jul 2021 10:31:34 +0000 (18:31 +0800)
README

diff --git a/README b/README
index 2c9f3ba53d337ce98d9ec148f0acfca44f2b4ad8..c1df9e70b27b1b9bdb7567fc297416bc4b9bca0e 100644 (file)
--- a/README
+++ b/README
@@ -346,7 +346,7 @@ in linear.h, so you can check the version number.
         struct problem
         {
             int l, n;
-            int *y;
+            double *y;
             struct feature_node **x;
             double bias;
         };