ktahar / ocaml-lp

LP and MIP modeling in OCaml
MIT License
27 stars 1 forks source link

add lp-glpk-js #5

Closed ktahar closed 2 years ago

ktahar commented 2 years ago

Fix #2 by addition of new package lp-glpk-js. Interfaces to GLPK via JSON-based API provided by glpk.js. This is useful for web-based application using js_of_ocaml.

Drup commented 2 years ago

This is looking excellent, great work !

You might be interested to have a look at dune's virtual library, you might be able to factorize some of the common GLPK code between the C and the JS version, and present a single API.

ktahar commented 2 years ago

Thanks! I didn't know the virtual library feature. I'm gonna check it.