Tagged Questions
The convex-optimization tag has no wiki summary.
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 ...
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
4answers
640 views
Is there an simple algorithm for calculating maximum inscribed circle into a convex polygon?
I found some solutions, but they're too messy.
2
votes
4answers
387 views
Polygon Decomposition - Removing Concave Points to Form Convex Polygons
I would like to deconstruct the following polygon shown in blue removing all of the points from the polygon that cause concavity.
Currently, what I have been attempting to do is:
Take each point ...
2
votes
2answers
78 views
How to implement convex optimization package?
I fully realize that Convex Optimization packages, like Linear Algebra packages, should be things you use, not implement. However, for purely education purposes -- is there any good resource -- link / ...
2
votes
1answer
365 views
Issues in Convergence of Sequential minimal optimization for SVM
I have been working on Support Vector Machine for about 2 months now. I have coded SVM myself and for the optimization problem of SVM, I have used Sequential Minimal Optimization(SMO) by Mr. John ...
1
vote
2answers
79 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
54 views
Solving a convex program whose objective function involves convex programs
I would like to solve something like the following: maximize the sum (over i) of v_i * g_i(w) subject to w (a vector) summing to 1 (or <1,w>=1), where g_i(w) is defined as the argmax of w^t*x (or ...
0
votes
1answer
151 views
How to use cvxopt with DSDP?
I'm trying to use DSDP (semidefinite programming package) with cvxopt. I have both of them installed (matlab version for DSDP). I have Python 2.5.2.
When trying to use
dsp(..., solver='dsdp')
I ...
-2
votes
2answers
55 views
Relating Machine learning Techniques to solve optimization Problem
Consider an optimization problem of some dimension n, Given some linear set of equations(inequalities) or constraints on the inputs which form a convex region, finding the maximum\minimum value of ...