User Tools

Site Tools


cplex

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
cplex [2014/08/27 17:20]
lehighinforms created
cplex [2015/10/28 11:31]
sertalpbilal removed
Line 2: Line 2:
  
 IBM CPLEX is an optimization package offered by IBM Software. IBM CPLEX is an optimization package offered by IBM Software.
 +
 +===== C++ API =====
 +
 +==== Saving Models ====
 +CPLEX can save the model by using the CPLEX environment as follows:
 +<code cpp save.cpp>
 +baseModel = new IloModel(env);
 +IloCplex cplex(*baseModel);
 +// Stuff
 +cplex.exportModel("prob.mps");
 +</code>
 +Based on the extension, CPLEX can also save with ''.lp'' and ''.sav'' format.