From: guestwalk Date: Wed, 10 Oct 2012 04:49:54 +0000 (+0000) Subject: remove duplicated blas.h in blas/Makefile X-Git-Tag: v192~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e08fc93af236bd1f5b7a76311269f188752f5537;p=liblinear remove duplicated blas.h in blas/Makefile fix a syntax bug in matlab/predict.c update windows binary --- diff --git a/blas/Makefile b/blas/Makefile index 2be0186..895fd24 100644 --- a/blas/Makefile +++ b/blas/Makefile @@ -1,7 +1,7 @@ AR = ar rcv RANLIB = ranlib -HEADERS = blas.h blas.h blasp.h +HEADERS = blas.h blasp.h FILES = dnrm2.o daxpy.o ddot.o dscal.o CFLAGS = $(OPTFLAGS) diff --git a/matlab/predict.c b/matlab/predict.c index 4855268..b1d56d5 100644 --- a/matlab/predict.c +++ b/matlab/predict.c @@ -220,9 +220,9 @@ void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[] ) { int prob_estimate_flag = 0; - info = &mexPrintf; struct model *model_; char cmd[CMD_LEN]; + info = &mexPrintf; col_format_flag = 0; if(nrhs > 5 || nrhs < 3) diff --git a/windows/liblinear.dll b/windows/liblinear.dll index f2c4e87..8c7b3b7 100755 Binary files a/windows/liblinear.dll and b/windows/liblinear.dll differ diff --git a/windows/predict.exe b/windows/predict.exe index cb2b4fd..2a19e55 100755 Binary files a/windows/predict.exe and b/windows/predict.exe differ diff --git a/windows/predict.mexw64 b/windows/predict.mexw64 index 395332b..d48c07e 100755 Binary files a/windows/predict.mexw64 and b/windows/predict.mexw64 differ diff --git a/windows/train.exe b/windows/train.exe index 66584a2..31ca319 100755 Binary files a/windows/train.exe and b/windows/train.exe differ diff --git a/windows/train.mexw64 b/windows/train.mexw64 index 652f799..3348a03 100755 Binary files a/windows/train.mexw64 and b/windows/train.mexw64 differ