Tagged Questions

An optimization technique for minimizing or maximizing a function of several variables in the presence of constraints where all relationships are linear.

learn more… | top users | synonyms

11
votes
6answers
762 views

What is linear programming? [closed]

I read over the wikipedia article, but it seems to be beyond my comprehension. It says it's for optimization, but how is it different than any other method for optimizing things? An answer that ...
11
votes
7answers
1k views

Which algorithm for assigning shifts (discrete optimization problem)

I'm developing an application that optimally assigns shifts to nurses in a hospital. I believe this is a linear programming problem with discrete variables, and therefore probably NP-hard: For each ...
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 ...
7
votes
6answers
720 views

How do I solve a set of constraints in Perl?

I have the following set of constraints in Perl (just a sample set of constraints, not the ones I really need): $a < $b $b > $c $a is odd => $a in [10..18] $a > 0 $c < 30 And I need ...
6
votes
2answers
130 views

LP modelling question… long time since school

Sure, this isn't a programming question, per se... but I couldn't think of a better place to ask it all the same. I'm writing an application that ultimately will assist a shopped to determine how to ...
6
votes
2answers
774 views

Recommended library for linear programming in .Net?

Can anyone recommend a library - free, or commercial but affordable ( There are some listed here: http://en.wikipedia.org/wiki/Linear_programming#Solvers_and_scripting_.28programming.29_languages ...
6
votes
3answers
5k views

LP Simplex algorithm in C++ [closed]

I need the robust C++ source code of the simplex algorithm (is a popular algorithm for numerical solution of the linear programming problem). Please, no links to wikipedia. I need good source code ...
6
votes
4answers
4k views

mathematical optimization library for Java — free or open source recommendations?

Does anyone know of such a library that performs mathematical optimization (linear programming, convex optimization, or more general types of problems)? I'm looking for something like MATLAB, but with ...
5
votes
5answers
162 views

What are some examples of problems that are best solved with Integer Linear Programming?

I've always been writing software to solve business problems. I came across about LIP while I was going through one of the SO posts. I googled it but I am unable to relate how I can use it to solve ...
5
votes
1answer
386 views

Find the Discrete Pair of {x,y} that Satisfy Inequality Constriants

I have a few inequalities regarding {x,y}, that satisfies the following equations: x>=0 y>=0 f(x,y)=x^2+y^2>=100 g(x,y)=x^2+y^2<=200 Note that x and y must be integer. Graphically it ...
5
votes
2answers
4k views

Linear Programming Tool/Libraries for Java

I'd like to set up a large linear programming model to solve an interesting problem. I would be most comfortable in Java. What tools/libraries are available?
4
votes
2answers
105 views

Shopping route optimization algorithm?

There are number of shops s which offer articles a for different prices. It is possible for a shop to not offer a specific product. Shops can be connected to each other (streets). The task is to find ...
4
votes
2answers
147 views

Is this a linear programming problem?

I have been pulling my hair out on one problem... The overall problem is complicated... but let me try my best to explain the part that really matters... I have a graph where each edge represents the ...
4
votes
1answer
167 views

A mathematical programming problem

I have an optimization problem as follows. Given an array of positive integers, e.g. (y1 = 2, y2 = 3, y3 = 1, y4 = 4, y5 = 3), I aim to maximize the sum of the values of functions f(x), where f(x) = ...
4
votes
1answer
434 views

How can I inscribe a rectangle or circle inside an arbitrary quadrilateral

This may be a more math focused question, but wanted to ask here because it is in a CS context. I'm looking to inscribe a rectangle inside another (arbitrary) quad with the inscribed quad having the ...
4
votes
2answers
936 views

Good linear programming library for C#?

I'm looking for a linear programming solver for C#. In the other words I'm looking for a library for C# that solves linear programming problems. I need an easy to use library (so I can learn how to ...
4
votes
2answers
1k views

binary linear programming solver in Python

I have a Python script in which I need to solve a linear programming problem. The catch is that the solution must be binary. In other words, I need an equivalent of MATLAB's bintprog function. NumPy ...
4
votes
6answers
1k views

Sparse constrained linear least-squares solver

This great SO answer points to a good sparse solver for Ax=b, but I've got constraints on x such that each element in x is >=0 an <=N. Also, A is huge (around 2e6x2e6) but very sparse with ...
4
votes
2answers
491 views

NSPredicate as a constraint solver?

I'm working on a project which includes some slightly more complex dynamic layout of interface elements than what I'm used to. I always feel stupid writing complex code that checks if so-and-so is ...
3
votes
1answer
155 views

Any good implementation of greedy set cover for large datasets?

This question follows from a related question of mine posted here. @mhum suggested that my problem falls into the covering problem domain. I tried encoding my question into a minimum set cover problem ...
3
votes
3answers
85 views

Is there an Integer Linear Programming software that returns also non-optimal solutions?

I have an integer linear optimisation problem and I'm interested in feasible, good solutions. As far as I know, for example the Gnu Linear Programming Kit only returns the optimal solution (given it ...
3
votes
1answer
66 views

Gurobi and java and empty solution

I'm using Gurobi with java to solve a ILP problem. I set all and I start the program. But Gurobi doesn't even try to solve my problem and gives my an empty solution all variable set to 0. During the ...
3
votes
2answers
190 views

What libraries should I use for linear programming in python?

A quick search on "python linear programming" turns up a lot of hits (e.g. this one). Looking through them, I see a fair number of complaints about outdated dependencies, poor documentation, etc. ...
3
votes
6answers
1k views

Integer linear programming: example and good tools?

Find a vector x which minimizes c . x subject to the constraint m . x >= b, x integer. Here's a sample input set: c : {1,2,3} m : {{1,0,0}, {0,1,0}, {1,0,1}} b : {1,1,1} With output: x ...
3
votes
4answers
704 views

How to solve a system of inequalities?

I've reduced my problem (table layout algorithm) to the following problem: Imagine I have N variables X1, X2, ..., XN. I also have some (undetermined) number of inequalities, like: X1 >= 2 x2 + X3 ...
3
votes
5answers
561 views

Solving an inequality for minimum value

I'm working on a programming problem which boils down to a set of an equation and inequality: x[0]*a[0] + x[1]*a[1] + ... x[n]*a[n] >= D x[0]*b[0] + x[1]*b[1] + ... x[n]*b[n] = C I want to ...
2
votes
1answer
48 views

SAT/CNF optimization

Problem I'm looking at a special subset of SAT optimization problem. For those not familiar with SAT and related topics, here's the related Wikipedia article. TRUE=(a OR b OR c OR d) AND (a OR f) ...
2
votes
1answer
76 views

How to set decision variables types like binary, int, double in Apache Commons Math SimplexSolver?

How to set decision variables types like binary, int, double in Apache Commons Math SimplexSolver? The output of the program below is this: 332.6666666666667 1.0 8331.666666666668 I want decision ...
2
votes
1answer
92 views

testing pulp installation fails

Following instructions from http://www.coin-or.org/PuLP/main/installing_pulp_at_home.html#installation , I installed PuLP using "Windows Installation from source" When I tried to run the test on the ...
2
votes
3answers
230 views

Is this integer programming?

The problem: n variables (x) add up to be a constent. x1+x2+..+xn = const, where each x can only take p (say 5) positive integer values. We want to find the solution where the difference between x's ...
2
votes
2answers
377 views

Linear Programming with Javascript

Tacking onto this question, I'm told my problem falls into the domain of linear programming. Without addressing how to actually solve the problem (heh), I simply want to know if there are any ...
2
votes
1answer
213 views

How to solve this logical problem with Prolog?

That's my first question so please be tolerant. I've logical problem to write in prolog/CLP: "It is known only one character is telling the truth. Mr April says Mr May tells lies. Mr May says ...
2
votes
2answers
805 views

Integer Linear Programming Java: Multiple Open Source and Commercial tools are available. Which one to use?

I need to use Integer Linear Programming API/Tool for my application. Though my application is in Java but I don’t mind calling an EXE (Tool) from Java providing input using file (MPS, etc). My ...
2
votes
2answers
621 views

number of possible combinations in a partitioning

Given is a set S of size n, which is partitioned into classes (s1,..,sk) of sizes n1,..,nk. Naturally, it holds that n = n1+...+nk. I am interested in finding out the number of ways in which I can ...
1
vote
2answers
27 views

Can this be formalized in terms of mixed-integer linear programming?

I am trying to solve a problem where there are a group of objects that need to move between various points at specific times. I have been able to formalize most of the constraints in terms of linear ...
1
vote
2answers
94 views

Fox-Goat-Cabbage Transportation

My question is about an old transportation problem -- carrying three items across a river with a boat only capable of tranferring one item at a time. A constraint is certain items cannot be left ...
1
vote
2answers
77 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
4answers
126 views

Algorithm to do Minimization in Integer Programming

I understand that doing minimization in integer programming is a very complex problem. But what makes this problem so difficult? If I were to (attempt) to write an algorithm to solve it, what ...
1
vote
0answers
128 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
0answers
103 views

lp_solve consecutive calls to `solve' are incorrect

I need to solve some simple linear integer programming-like problem, I took lp_solve library. The task is to obtain variables' values for some consequtive values of linear function with possible ...
1
vote
1answer
38 views

How to program a complex set of interrelations?

First, I'm sorry about the title, that was the best I could come up with. What I mean is something like, a program that tells me that when A goes up, B goes down, which makes C go up, which increases ...
1
vote
1answer
51 views

Java - LP solvers dynamic link error

I am having problems with linear programming solvers on a project I am working on. Firstly I tried using Ajanta, but this won't solve the class of problems I needed to solve. So I tried GLPK and ...
1
vote
2answers
144 views

C# LP/Lagrange with Bounded Variables

Summary: How would I go about solving this problem? Hi there, I'm working on a mixture-style maximization problem where my variables are going to be bounded by minima and maxima. A representative ...
1
vote
2answers
147 views

Implementions of “Interior Point Method” to solve LP (and QP)

I would like to look at a couple of implementations of IPMs. The languages preferable are C/C++, Java or any scripting languages like python, perl. Others are also fine. I am searching for a good ...
1
vote
1answer
164 views

MapReduce Linear Programming

Can a simple linear programming problem be solved on a distributed system using map-reduce?
1
vote
3answers
261 views

Optimization problem in Python

I need to solve a problem. I have 5 devices. They all have 4 kind of I/O types. And there is a target input/output combination. At first step, I want to find all combinations among the devices so that ...
1
vote
1answer
152 views

Linear program question

I'm trying to prepare for my midterm and I was going over some problems out of my algorithm book but can't seem to figure out the following problem: Find necessary and sufficient conditions on the ...
1
vote
0answers
218 views

Open Source .Net Linear Programming Library [closed]

Possible Duplicate: Good linear programming library for C# ? Is there any free open source .Net linear programming library available?
1
vote
0answers
200 views

How do I solve the linear programming relaxed MKP?

I am studying about Knapsack problem. So I do not understand one thing here. The profit/pseudo-resource consumption ratios Uj = Pj / Wj with Wj = Rji * Aj I hope so you people know this ...

1 2