Hi all,<br><br>Some of you may be interested to know that Carlo Baldassi and I are working on a Clp interface for the new language Julia (<a href="http://julialang.org/" target="_blank">http://julialang.org/</a>). Julia is currently capable of calling only C-based APIs, so we are using Clp_C_Interface.h, which has been working well so far. One small snag is with Clp_infeasibilityRay and Clp_unboundedRay, which return pointers which the user is expected to free by calling delete[]. We don&#39;t have the ability to do this from Julia. While there are hackish workarounds, this really seems like an issue with the interface, since a user in C shouldn&#39;t be expected to call C++&#39;s delete. <br>

<br>Looking at Clp_C_Interface.cpp and ClpModel.cpp, it looks like a quick fix to move some logic into Clp_C_Interface.cpp so that the arrays can be allocated with malloc(). I&#39;m happy to make a patch if that would be the easiest course of action.<br>
<br>Thanks,<br>Miles<br>