cjlin1 / liblinear

LIBLINEAR -- A Library for Large Linear Classification
https://www.csie.ntu.edu.tw/~cjlin/liblinear/
BSD 3-Clause "New" or "Revised" License
1.01k stars 342 forks source link

removes one unnecessary memory allocation by reusing the w_new array #69

Closed ngc92 closed 4 years ago

ngc92 commented 4 years ago

this removes one superfluous memory allocation: We can use the w_new array in place of w0, which gets rid of one allocation/deallocation pair

cjlin1 commented 4 years ago

this had been handled in #67