From: Sinacam Date: Fri, 9 Jul 2021 10:31:34 +0000 (+0800) Subject: fixed type of struct problem y X-Git-Tag: v244~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a140892fe73030640c18be040845982f38f3b23;p=liblinear fixed type of struct problem y --- diff --git a/README b/README index 2c9f3ba..c1df9e7 100644 --- 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; };