sellout / cl-glpk

Common Lisp interface to GLPK (GNU Linear Programming Kit). This is a fork of Kai Kaminski’s original (http://common-lisp.net/project/cl-glpk/).
6 stars 5 forks source link

autowrap, fix memory leaks #1

Open death opened 9 years ago

death commented 9 years ago

Now works with latest GLPK.

sellout commented 9 years ago

I like most of this, but I don’t like all the new files added for Autowrap support. Where do those come from? If they need to be hand-written, then the existing stuff is better (read: shorter). If they can be generated, then the repo should only contain what’s needed to generate them (just a dependency on the GLPK headers?).

death commented 9 years ago

If autowrap doesn't find these files, it generates them using an external (non-Lisp) program called c2ffi. If it does find them, then it just uses them. They are bundled in the repository so that a cl-glpk user won't need this external program.