CPLEX is a commercial mixed-integer solver owned by IBM.
-7
votes
0answers
31 views
u-shaped assembly line balancing in c++ using cplex libray [closed]
I have to fatch data from csv file can anybody can tell me how to do it aur give examples like that so that I could start
0
votes
2answers
30 views
Plotting progress in cplex optimization
I would like to able to plot the progress of a MIP solved by cplex. Specifically I would like to plot lower and upper bounds as functions of cpu-time. But copying an pasting from the node log does not ...
0
votes
1answer
57 views
Cplex c++ loop for
I need to write a cplex program using the callable library in visual c++.
I need to use numrows and numcols in this way.
I only put the beginning of my program since my problem is at the beginning.
...
-1
votes
1answer
67 views
Access Violation writing location using CPLEX with VS2010
I am new to C programming. I'm running CPLEX library in a C++ code using visual studio 2010. I'm getting access violations when performing some actions.
The violation is reported in the function ...
0
votes
0answers
21 views
Quadratic objective function SolutionTarget=2 makes no help (CPLEX)
I am using ILOG CPLEX optimization studio with Java and I am trying to optimize some quadratic function. All of the constraints in my problem are linear. I know that my objective function is not ...
0
votes
1answer
49 views
CPLEX C++ Interface: How to get the index of a violated constraint?
I attempt to solve an integer linear program (ILP) using the solver IBM ILOG CPLEX in C++. The solver states that the problem is infeasible and points out the index of a violated constraint. My ...
0
votes
1answer
24 views
Maximizing an objective function in CPLEX by using ILOG
I was working on a project and I was wondering something about the functions of CPLEX for ILOG. For instance, I'm selling products for each customer, I have different probabilites for each of 6 ...
1
vote
1answer
41 views
Can i get the value of IloNumVarArray? about definition of objective function
I am using CPLEX to solve a mip. My objective is to minimize the sum of the decision values which are positive. So I need to judge the sign of the decision value when I define the objective function.
...
1
vote
2answers
46 views
How to get number of constraints from Cplex
I have a long program that I've written in C++ and I'm using ILOG Cplex12.5 Solver to solve it.
How can I get total the number of constraints? Is there a function for it?
0
votes
1answer
40 views
CPLEX: Any Callbacks called per solution found while polishing?
What callbacks get called during polishing? More specifically, is there a callback that gets called for each new solution found during polishing?
I have some (old) code in C++ that uses a ...
2
votes
1answer
59 views
How to avoid multi-threading problems (wxWidgets and Cplex) in C++?
I wrote a tool in C++ using wxWidgets for the GUI and IBM ILOG Cplex to solve an optimization problem.
In one of the functions called by the wx event handler, I invoke the IBM ILOG Cplex Optimizer ...
0
votes
0answers
90 views
Visual Studio Ultimate 2012 error LNK1104: cannot open file 'cplex125.lib' [closed]
I recently changed computers, and I'm attempting to migrate a program I was working on from my old to my new computer. It's a C++ program that uses the cplex optimisation library. I copied the file ...
1
vote
1answer
69 views
C++ valgrid error: Invalid read of size 8, Address 0x8 is not stack'd, malloc'd or (recently) free'd?
I compiled my code and ran it, but it gave me segmentation error.
So I tested my executable program using valgrid. I got the following message:
==7932== Invalid read of size 8
==7932== at ...
1
vote
2answers
96 views
What's wrong in my initialization?
This lines of code is part of my c++ cplex library optimization function definition.
IloArray<IloArray<IloExpr> > weightedSumBR = IloArray<IloArray<IloExpr> >(env, r);
...
1
vote
1answer
79 views
Cplex Random number (c++)
I did a random number before in c++ which works but when I try with CPLEX it doesn't work at all.
I would like to know how to do random in cplex
The way I do random in c++ :
int t = (rand() % 10) ...
-2
votes
1answer
135 views
Access Violation Writing Location c++ [closed]
I am new to c++ and cplex so any help would be greatly appreciated.
Problem: I am running a column generation code. My code looks like this:
CPXENVptr *env = NULL;
CPXLPptr *lp= null;
...
0
votes
1answer
23 views
GAMS CPLEX understanding the IIS report
I am using GAMS with the CPLEX optimizer. Within the CPLEX optimizer is an option "iis", so that it generates the irreducably inconsistent set of constraints. If I set the iis option to 1 (or ...
0
votes
2answers
78 views
C++ cplex value of variable in loop for
I got a problem in my program. I know where but I don't know why.
Here is my code:
#include <ilcplex/ilocplex.h>
ILOSTLBEGIN
using namespace std;
typedef IloArray<IloNumArray> ...
3
votes
2answers
162 views
Efficient way how to solve Linear Programming [closed]
I do a research on Linear Programming and I need to solve a complicated (hundreds of variables and constraints) problem. There are a lot of ways how to solve LP (that's not the problem) in a ...
0
votes
0answers
15 views
lexicographic optimization using cplex
I want solve a combinatorial lexicographic optimization problem of the form
\min (c_1x, c_2x) st.: x\in X
To do so, I want to change the pruning criteria used by cpex and the way cplex updates the ...
1
vote
1answer
76 views
Cplex c++ multidimensional decision variable
I'm new using cplex and I try to find some information on internet but didn't find clear stuff to help me in my problem.
I have P[k] k will be equal to 1 to 4
and I have a decision variable x[i][k] ...
0
votes
1answer
78 views
Using MIP starts in ILOG CPLEX Optimizer java API
I can't find a way to efficiently use MIP starts in CPLEX java API.
I have a linear problem that I need to solve many times by changing just one constraint or changing the objective so I thought that ...
0
votes
0answers
50 views
Cplex Visual studio 2008 Error Example
I'm beginner in using Cplex with visual studio.
I install both of them and follow the step of the manual.
When I try the example that I take from here : example
I have these errors:
fatal ...
0
votes
2answers
82 views
Maximize diversity of binary variables in CPLEX java API's populate method with constraint on optimality
I am trying to produce many solutions to a mixed-integer problem in CPLEX with all integer variables as binary. The problem has roughly 1000 continuous variables and 1000 binary variables, serving as ...
0
votes
1answer
93 views
How to check if a constraint already exists in CPLEX C++?
I have some constraints of the form Sizes[i1] + Sizes[i2] + Sizes[i3]<=1, which I add by
model.add(Sizes[i1] + Sizes[i2] + Sizes[i3]<=1)
for some specific indices i1,i2,i3. Later I want to ...
3
votes
1answer
90 views
CPLEX Python API performance overhead?
When I run CPLEX 12.5.0.0 from the command line:
cplex -f my_instance.lp
an optimal integer solution is found in 19056.99 ticks.
But through the Python API, on the very same instance:
import ...
0
votes
1answer
90 views
Problems with using variable bounds and objective function in C++ CPLEX
I am writing a linear programming model in C++ unsing the concert technology from cplex.
I declare the variables and the objective function of my model like this:
IloModel genInst (env);
...
-3
votes
3answers
86 views
accessing precise integral variable's value through c++ [closed]
cplex.getvalue(x) return float value, and when I put the value in int, it's different from the initial one. Is there a better way to accessing the integer variable's value?
Now I just use a naive way ...
0
votes
0answers
51 views
Setting up a Large Quadratic Program (QP)
Is there a fast way of setting up a large quadratic program in Cplex using the C++ interface?
Ideally, I would like to use a function IloObjective::setQuadCoefs (note the s in the end) analogous to ...
0
votes
1answer
124 views
Error when calling CPLEX in Matlab
I am using cplex12.5 (x86-32) academic version with win7 (32bit) and Matlab 2009a (32bit).
I tried a simple linear problem using cplexlp function in Matlab. The following error has appeared:
Error ...
1
vote
1answer
86 views
CPLEX multi dimentional array
I have variable xijm and it can be either 0 or 1. I know that I should IloArray<> but I need to see an example in java. I have found this but I am using java. The idea is not clear to me! Can ...
0
votes
0answers
140 views
Correct Method for Iterative Method Cplex Linear Programming [closed]
I have a iterative method that I am writing using C++ and Cplex. It is a linear relaxation of a MIP program and the current way I am writing is much less efficient that just using a cplex's MIP ...
0
votes
0answers
44 views
miptrace on GAMS/Cplex
I am looking for find to save the MIP trace in GAMS/CPlex.
the end of my code is :
MODEL modelname /ALL/ ;
SOLVE modelname USING mip MINIMIZING Z ;
option miptrace=q.txt
option miptracenode=100
...
1
vote
0answers
261 views
java.lang.UnsatisfiedLinkError: no cplex122 in java.library.path
When I compile, I receive the following notes:
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use ...
0
votes
2answers
55 views
Find multiple solutions by changing direction and priority
With cplex, i want to solve a SAT problem several times and get different solutions by changing the directions (IloCplex.BranchDirection.Up | IloCplex.BranchDirection.Down) and priorities for the ...
0
votes
0answers
59 views
adding time in ilog cplex java model [closed]
I have a model where I plan how a number of cars will park in a number of car parks. I'm using ILog Cplex Java for this. How can I add the essence of time in the model? For example to say that car1 ...
0
votes
0answers
57 views
Difference about getIIS and refineConflict
I'm using cplex to solve a linear programming problem. Since the time of invoking getIIS is long when the size of the problem is large, I try to use refineConflict method
to find the minimal conflict ...
0
votes
0answers
160 views
adding an expression in CPLEX model
I work on an algorithm to solving a Network flow problem as:
min 3X1+1X2+8X3 // min cost on arc 1
max X1+ X2+ x3 // max usage of arc 1
min 8X1+2X4+2X5 // min cost on arc 2
max X1+ X4+ X5 // ...
3
votes
2answers
231 views
How to create a multidimensional variable in ilog with Java interface?
I want to model a problem with a variable x[i][j][k].
No where in the reference manual is there mention of how to create a variable with size greater than 1 dimension.
...
0
votes
1answer
265 views
two dimension variable in cplex(java)
I am new to cplex. In my ilp I have variable Xij (variable X has two dimension) how should I create that in cplex?(my interface is java)
I know that IloNumVar[] x is a array of x but is only one ...
2
votes
1answer
497 views
CPLEX + YALMIP — “Solver not found”?
I'm trying to get started with YALMIP, which is a Matlab interface to optimization solvers such as CPLEX. I have an objective function obj and constraints cons, and I've plugged them into Yalmip...
...
0
votes
1answer
119 views
Why CPLEX outputs different results on different machines?
When I run .NET 4 application which uses CPLEX, I get different outputs on different machines. On my development machine CPLEX outputs one result (which is abnormal and stuck at some large value), and ...
0
votes
0answers
48 views
How to improve the time of getIIS when using cplex to solve linear programming?
I invoke cplex by java api to check whether the linear constraint set is feasible. It takes no more than one second to give the result that the linear constraint set is infeasible, but the time of ...
1
vote
2answers
327 views
How to fix the memory leak of cplex?
I install the latest version of cplex, and invoke it by JAVA API.
Since I will invoke it many times, I use cplex.clearmodel and then create the new model.
But when I use it to do linear programming ...
0
votes
3answers
141 views
CPLEX -linear-optimization-program for Unix?
The linear-optimization course 2.3140 requires CPLEX but it is pain to use because poorly-documented and hard-to-get any information when a brick wall like here and here, let alone not having the ...
2
votes
1answer
321 views
Force Python to be 32 bit on OS X Lion
I'm trying to use CPLEX within Python on Mac OS 10.7.5. CPLEX appears to only support a 32 bit python. I'm using this in a python shell to check if it's 32 bit:
import sys,platform; print ...
0
votes
1answer
137 views
cplex for if-else statments
I am new to cplex. In my ilp I have couple of if-else statement. I want to use cplex for solving my problem using java API. I don't know how to formulate if-else in cplex.
example:
if x>0 then a=1
...
0
votes
1answer
96 views
What is wrong with this forall -statement in CPLEX?
I am trying to answer here but err:
forall(t in 0..4){
a[t]<=z[t];
-a[t]<=z[t];
x[t+1]==x[t]+v[t];
v[t+1]==v[t]+a[t];
}
0
votes
1answer
170 views
How can I do functions in CPLEX?
I am trying to find small-working-example about CPLEX with functions. Bad example here how not do things. How are functions defined in CPLEX?
P.s. I am doing already submitted work for the ...
0
votes
0answers
44 views
Matrix decomposition in cplex
I am a newbie to cplex as well as Linear programming. I am trying to run a LP where there is a decomposition like LR=X where L,R and X are matrices and X is the known matrix. How do I exactly ...


