An optimization technique for minimizing or maximizing a function of several variables in the presence of constraints where all relationships are linear.
0
votes
0answers
14 views
How can i send an query from java to lpsolve as String
Hi i formulated a linear programing problem using java
and i want to send it to be solved by lpsolve without the need to create each constraint seperatlly.
i want to send the entire block (which if ...
0
votes
1answer
55 views
lpsolve package in R
I'm using lpsolve package for linear programming but have read in its tutorial that only solves for non-negative variables.
Here's my code:
library(lpSolve) #linear programming solver
c = c(30, 18, ...
-1
votes
0answers
22 views
variation of hungarian algorithm [closed]
Can someone suggest an algorithm to solve job assignment problem with condition?
With condition means that some jobs cannot be done by some workers. For example table as shown below:
In this table ...
-1
votes
0answers
15 views
solving suduko as LP using lpsolve - Error it runs forever
I have been trying to solve suduko as a Linear programing model using java and lpsolve
the java code build the model which is then run on lpsolve unfortunnatlly it never ever finishes to run (running ...
0
votes
0answers
9 views
Define integrer variables in PyLPsolve (a lpsolve wrapper for python)
PyLPsolve has some great features I want to use. I have a question, though:
How do you define the list of integer variables of the MIP?
That is, in the standard wrapper of lpsolve:
solution = ...
0
votes
0answers
36 views
Unimodality constraint with Microsoft Solver Foundation
I am using Microsoft Solver Foundation (MSF) to solve an Ax = b problem where x is positive. I want to add the additional constraint of "unimodality", i.e. x increases monotonically to some maximum ...
0
votes
0answers
38 views
Optimization Library in Ruby
I am writing a machine learning/classification algorithm in ruby, and I would like to optimize for some of the parameters in my algorithm. I have 4 variables, p, x, y, and z, where 0 <= x + y + z ...
2
votes
1answer
31 views
How to assign binary variable in AMPL in respect to another variable
I have a problem with AMPL modelling. Can you help me how to define a binary variable u that suppose to be equall to 0 when another variable x is also equall to 0 and 1 when x is different than 0?
I ...
3
votes
3answers
117 views
Linear programming library for .NET / C#
I need to solve an under-determined linear system of equations and constraints, then find the particular solution that minimises a cost function. This needs to be done in purely portable managed code ...
2
votes
2answers
104 views
Existing Algorithm for Scheduling Problems?
Let's say I want to build a function that would properly schedule three bus drivers to drive in a week with the following constraints:
Each driver must not drive more than five times per week
There ...
1
vote
1answer
48 views
Linear Programming optimization Package for Python 3.3?
Is there any Linear programming optimization package available which will be compatible with Python 3.3 in windows 32-bits?
I have just tried CPLEX, PulP-or, and Pyomo, but I can not install them on ...
0
votes
0answers
16 views
modeled problems with linear programming optimization in field of Information Technology
where can i find a modeled problem with linear programming optimization in field of Information Technology ?
its not important that its solved or not i need only the modeled problem.
i googled the ...
1
vote
1answer
37 views
GLPK Mathprog group of sets
I'm trying to code a model that can solve the Multiple Choice Knapsack Problem (MCKP) as described in Knapsack Problems involving dimensions, demands and multiple
choice constraints: generalization ...
2
votes
2answers
43 views
Approximation to Large Linear Program
I have a simple LP with linear constraints. There are many decision variables, roughly 24 million. I have been using lpSolve in R to play with small samples, but this solver isn't scaling well. Are ...
1
vote
1answer
44 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
47 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
41 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 ...
1
vote
1answer
75 views
Solving an integer linear program: why are solvers claiming a solvable instance is infeasible?
I'm trying to solve integer programming problems. I've tried both use SCIP and LPSolve
For example, given the final values of A and B, I want to solve for valA in the following C# code:
Int32 a = 0, ...
-2
votes
1answer
48 views
Linear programming model
I have the following taks.
Optimal portfolio problem
A finacial adviser is supposed to advise a client an adequate structure of investments. The client is a retired teacher having a stable views on ...
2
votes
1answer
56 views
Iterative use of bintprog on MATLAB
We have a problem formulation as shown in this link.
Considering that the first call of bintprog gives a solution x that after some post processing does not adequately addresses the physical problem, ...
0
votes
1answer
47 views
Weights Optimization in matlab
I have to do optimization in supervised learning to get my weights.
I have to learn the values (w1,w2,w3,w4) such that whenever my vector A = [a1 a2 a3 a4] is 1 the sum w1*a1 + w2*a2 + w3*a3 + w4*a4 ...
1
vote
2answers
97 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);
...
2
votes
1answer
151 views
Linear programming constraints: multiplication of optimization variables
Given an optimization problem with two optimization variables (x_in(t), x_out(t)). For any time-step, when x_in is non-zero, x_out must be zero (and vice versa). Written as a constraint:
...
0
votes
0answers
28 views
Integer Linear Programming 3D constraints
I have only done basic 2D ILP, but I am wondering how I could apply it to 3D volumetric cube stacking program. I am confused as to how I should set up the problem. Are there any resources that are ...
1
vote
1answer
219 views
Example of delayed column generation
Can someone point me to a small example of how delayed column generation works for the cutting stock problem. I have found several sources that describe it abstractly but I still don't understand ...
0
votes
1answer
48 views
Syntax error in linear programming modelling with Glpk
Here is my full problem:
Information:
*Max. total investment: $125
*Pay-off is the sum of the units bought x pay-off/unit
*Cost per investment: Buy-in cost + cost/unit x number of units if you ...
2
votes
1answer
51 views
How to a plot a line for ax+by-c in MATLAB?
The title basically says it all. I'm doing an assignment and need to include a plot of my scatter and the line generated by linprog().
I ran linprog() and got the values:
1.0000
1.0000
16.5000
...
1
vote
1answer
102 views
How can I write an if condition for my variable in GLPK?
Here is my full problem:
Information:
*Max. total investment: $125
*Pay-off is the sum of the units bought x pay-off/unit
*Cost per investment: Buy-in cost + cost/unit x number of units if you ...
2
votes
3answers
89 views
AMPL cannot find “minos”
I've faced a problem with AMPL. I'm using 32-bit version of Linux OS.
I'm trying to solve a simple linear programmin problem but I can't understand what is wrong... Here is model, data files and ...
2
votes
1answer
58 views
How to verify if a vector is really recovered?
In compressed sensing, how to verify if a vector is recovered or how could one plot the figures on recovery rate? since in numerical experiments, there is always a difference between the original ...
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 ...
2
votes
2answers
248 views
Does Integer Linear Programming give optimal solution?
I am trying to implement a solution to a problem using Integer linear programming (ILP). As the problem is NP-hard , I am wondering if the solution provided by Simplex Method would be optimal ? Can ...
1
vote
1answer
50 views
How to use GLPK library on Android
I have a linear programming problem that I have to solve in an android application. I used Apache Commons Math for solving it, but it turned out that this gives me the result in double values. I need ...
0
votes
1answer
151 views
android linear programming lp_solve library
Can someone help me how to use lpsolve55j.jar on Android device. I tried importing it like every other library (putting it in libs folder and adding it in JavaBuildPath -> Libraries) but I got this ...
0
votes
1answer
114 views
Apache Commons Math SimplexSolver with lower and upper bounds?
I intend to solve the following linear programming problem using the Simplex method provided in the Apache Commons Math library. I do not get it to work and I find the API documentation limited.
...
1
vote
0answers
132 views
What is the fastest way to solve small linear programs inside a loop in MATLAB?
I'm running linprog inside a large time loop to solve small (m,n <=3) linear programs but it is my code's bottle neck. I found that using Simplex (Large scale 'off') instead of interior point in ...
1
vote
1answer
131 views
Optimize value with linear (or non-linear?) constraints in R
I am trying to pick the best possible fantasy football team given different constraints. My goal is to pick the players that maximize the sum of their projected points.
The constraints are:
1) The ...
0
votes
0answers
30 views
order of operations in zimpl
I am writing a program in zimpl but I am having a problem with one of my equations. When I use just the bare equation with only nonzero variables I get the right answer of 5.56, but when I add in the ...
1
vote
3answers
120 views
Constraint Satisfaction (Hierarchical) Solver
I need to model a constraint satisfaction (CSP) problem either in Java or .NET. The problem requires that a hierarchy of variables is represented. So every node of the tree is a variable.
For ...
1
vote
0answers
82 views
using cvxopt for LP problems with only Aeq=beq (no constraints with A*x<=b)
I am trying to solve a linear programming problem of the form
minimise cT.x
A.x = b
x >= 0
for a transportation problem.
However, using CVXOPT requires defining the variables G.x <= h for ...
0
votes
1answer
53 views
unexpected VARSYM, ZIMPL program
I am getting an unexpected VARSYM error for my ZIMPL program, I have no idea what the problem is, here is a portion of the code
Here are the variables
var FWPlus1 integer >= 0 <= 4;
var ...
0
votes
1answer
38 views
.lp format to .zpl
I am trying to convert a program from .lp format to .zpl, but before I convert my actual program I am trying to convert a simple problem to figure out how the .zpl format will work. It is very ...
3
votes
1answer
141 views
GLPK linear programming
I am working on some very large scale linear programming problems. (Matrices are currently roughly 1000x1000 and these are the 'mini' ones.)
I thought that I had the program running successfully, ...
1
vote
1answer
93 views
0-1 integer linear programming approximation algorithms
Hi I am looking for an approximation algorithm for 0-1 integer linear programming. Currently the approximation algorithms I find need to relax the interval to be [0,1]. However, my problem can only ...
0
votes
1answer
42 views
Many to Many “Generalized Assignment Pr0blem”
I am having problems with a specific problem. I have to schedule 5 employees to work over 14 days. each employee can only work 9 out of 14 days and each day there must be 3 employees scheduled. The ...
0
votes
2answers
116 views
How to solve a linear programing in matlab in canonical representation? [closed]
Is it possible to enter matlab a string like that:
MAX 140 x1 + 160 x2 +x3
SUBJECT TO
2 x1 + 4 x2 <= 28
5x1 + 5.333x2 -500X3 = 0
x1 <= 8
x2 <= 6
END
The toolbox I have installed:
...
1
vote
2answers
137 views
Algorithm to find possible combinations in Matlab with one constraint?
A very simple example :
A=[100 250 300]
How do I find all possible combinations as long as each combination has a sum of less than 500 ?
3
votes
1answer
106 views
How to check, without an object function, if the constraints are feasible?
My professor gave me a binary linear programming problem, but this problem is slightly different from optimization problems I used to solve(i.e. this is probably not maximizing or minimizing the ...
1
vote
1answer
85 views
converting a lingo model to lp format
I have written a program using LINGO but the trial version has constraints of 30 nonlinear variables and 30 integer variables, putting me over the limit. Before I decide I might want to buy the next ...
4
votes
3answers
111 views
Running other programs in Haskell / Linear programming package
I have a program called LPSolve that solves mixed integer optimization problems. The problem is that I can't dynamically add constraints during iterations, so I though about writing a haskell program ...





