Kosuke Tahara
Kosuke Tahara
I think ocaml-glpk also depends on system C package and bundling only GLPK's old API codes ([ocaml-glpk/src/oldapi/lpx.c](https://github.com/smimram/ocaml-glpk/tree/master/src/oldapi)). Do you mean I should include entire source tree of GLPK and configure...
Thanks. I think C link flag for user app is necessary now because I've used the pure OCaml interfacing (using `foreign` of ctypes). I have to dig more, but may...
#4 introduces stub-generation of ctypes and users don't have to specify C link flags now. In addition, it got a bit more robust against possible diff of glpk.h. But the...
Thank you for the patch. This is what I should have done on initial development... I agree with your approach of adding many optional parameters (object stuffs in glpk-js are...
Thanks a lot for completing this. I found that the broken constraint of the instance (knapsack n=18) can be fixed by setting tol_int to 1e-6 (or smaller). I think something...
Looks like your linker cannot find the object file of glpk (something like `libglpk.so`). I'm not pretty sure because I don't use MacOS. Maybe something like ``export LD_LIBRARY_PATH="/opt/homebrew/Cellar/glpk/5.0/lib:$LD_LIBRARY_PATH"`` helps. (Please...
Closing as this is not issue of the library.