A small bug in the 0.5 version of your Julia LIBLINEAR wrapper. The "verbosity && print(...)" shortcut causes the return type of the function to be Bool. Since the cfunction wrapper expects it to be Void this will cause any ccall into LIBLINEAR to fail. Fixed by reverting to the old verbose function syntax.
A small bug in the 0.5 version of your Julia LIBLINEAR wrapper. The "verbosity && print(...)" shortcut causes the return type of the function to be Bool. Since the cfunction wrapper expects it to be Void this will cause any ccall into LIBLINEAR to fail. Fixed by reverting to the old verbose function syntax.