Tagged Questions

cplex is a commercial mathematical optimizer now owned and sold by IBM. It can solve continuous and mixed-integer optimization problems with linear and convex quadratic constraints and objectives.

learn more… | top users | synonyms

10
votes
9answers
4k views

Best open source Mixed Integer Optimization Solver

I am using CPLEX for solving huge optimization models (more than 100k variables) now I'd like to see if I can find an open source alternative, I solve mixed integer problems (MILP) and CPLEX works ...
2
votes
1answer
89 views

solve multiobjective optimization: CPLEX or Matlab?

I have to solve a multiobjective problem but I don't know if I should use CPLEX or Matlab. Can you explain the advantage and disadvantage of both tools. Thank you very much!
1
vote
2answers
80 views

feasiblity problem in CPLEX

Is there an api to solve the feasibility problem (whether a feasible point exists) for a set of convex restraints in CPLEX.
1
vote
0answers
130 views

Sensitivity analysis in LP solvers from MATLAB

As far as I understand, CPLEX, LP_solve and GLPK, among other LP solvers, offer sensitivity analysis. I have the above three solvers installed on my machine, along with these two MATLAB wrappers: ...
1
vote
2answers
302 views

The GNU Linear Programming Kit

Has anyone used the GLPK for production systems? I have an application currently powered by CPLEX and wish to replace it with a free software alternative. It is used to solve a large MIP (thousands ...
0
votes
1answer
35 views

Dynamic CSP with Cplex

Do you know if there's a way to change some constraints in an already solved Cplex constraint optimization problem, and solve it again but with the result being as close as possible to the previous ...
0
votes
0answers
44 views

Integration of CPLEX 12.2 and Visual Studio 2010

I want to use one of those examples provided in the CPLEX package but I get several errors each time I try. I am using CPLEX 12.2 and Visual studio 2010. The followings are the errors I get each ...
0
votes
1answer
95 views

Finding Maximum taking too much time in ILP, why?

In short, we are now trying to change the IQP into the ILP. It took about 2 days with the old implementation to finish, now with linear tools -- it should speed up. Basically the problem is to ...
0
votes
0answers
65 views

Using CPLEX in Matlab

Im trying to learn how to use CPLEX in Matlab and I have a syntax question. I see from this thread that I can use a constant function for the feasibility problem. feasiblity problem in CPLEX But ...
0
votes
1answer
140 views

Cplex linking Error in Mex Command from Matlab

I am trying to run mixed integer quadratic programming by calling Cplex (122version) from Matlab using Mex function. When I try in matlab : mex miqp_cplex.c, following type errors occurred. ...
0
votes
1answer
104 views

CPLEX quadratic simplex?

Does anybody know which simplex-like algorithm CPLEX uses to solve quadratic programs. what is the so called Quadratic Simplex it is using? Thank you in advance, Mehdi
0
votes
1answer
361 views

Debugging cplex project in Visual Studio 2010

I cannot compile my c++ project cplex libraries on visual studio. The versions are cplex 122 and visual studio 2010 on windows 7 the cplex header I use is <ilcplex/ilocplex.h> the cplex ...
0
votes
2answers
418 views

Problem adding reference of C++ dll in C# project

I implemented a C++ dll that compiled successfully. The project contains a header and cpp file. The cpp file includes several third party headers (Cplex mainly). Once the dll was created: I then ...
0
votes
6answers
161 views

Problem declaring Global Variable in C++

I have a global variable in the class: IloModel model; that is going to be shared amongst several functions of the class. In one of the functions, I am going to initialize this model like: ...
0
votes
0answers
63 views

How do I connect cplex to mysql?

I want to get my data from a mysql database instead of a .dat file. Is this possible? How? Thanks!
0
votes
1answer
197 views

Is it just me or could the Cplex Concert API use some improvements?

Addendum: I realize this post appears to take the form of a rant, but if you could correct any misunderstandings I have, clarify anything, or better yet: help me solve my problem with the iterator ...
0
votes
1answer
953 views

CPLEX Error 1001 Out of memory

I was trying to solve an IMP with CPLEX. It throws an exception "CPLEX Error 1001: Out of memory" when I am building the model. The model contains around 2200000 line. I am getting this error ...