Hi,<br /><br /><span style="font-family: Verdana">the MPS format is descripted at, e.g.,<br />http://en.wikipedia.org/wiki/MPS_(format)<br /><br />However, using the LP format might be easier if you handwrite your model,<br />since it is more intuitive.<br />One documentation is at<br />http://lpsolve.sourceforge.net/5.5/CPLEX-format.htm<br /><br /><br />Then you should be able to just do something like<br />clp &lt;instance.mps&gt;<br />or<br />clp &lt;instance.lp&gt;<br />to solve it.<br /><br />If you want to call Clp from a library, there are a lot of examples coming with Clp.<br /><br />Stefan<br /><br /><blockquote type="cite"><div>Hi,</div> <div>&nbsp;</div> <div>I have some questions about clp project. I had a problem like this:</div> <div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; f(x) = C * x -&gt;min,</div> <div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; A * x =B,</div> <div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; x &gt;= 0.</div> <div>How can I save it in&nbsp;mps file then I can sovle it using clp. Or there is any other way to input it ?</div> <div>I want to get vector x which make f(x) minimum. Which function do I have to call?</div> <div>&nbsp;</div> <div>Thank.</div> <div>&nbsp;</div> </blockquote></span>