Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using CVXOPT for linear programming according to the following example: http://abel.ee.ucla.edu/cvxopt/examples/tutorial/lp.html I am pretty sure I express a constraint that

X1>=0 

But get a negative value for it. How come? I get the "optimal solution found" message

A = matrix([[0.0, 0.0, 1.0, 1.0, -0.0, -0.0, -1.0, -1.0, -1.0, 0.0, 0.0], 
[0.0, 1.0, 1.0, 0.0, -0.0, -1.0, -1.0, -0.0, 0.0, -1.0, 0.0], 
[1.0, 0.0, 0.0, 1.0, -1.0, -0.0, -0.0, -1.0, 0.0, 0.0, -1.0]]) 

Constraint values (right hand side)

b = matrix([1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0])

Minimizing function:

c = matrix([-1.0, -1.0, -1.0])

Calling:

 sol=solvers.lp(c,A,b)

But:

print (sol['x']): 
[-4.83e-09]
[ 1.00e+00]
[ 1.00e+00]

-4.83e-09>=0 
False

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

The default feasibility tolerance in CVXOPT is 1.0e-7, according to the user guide. Therefore you should expect that your constraints are only fulfilled to this level of accuracy.

EDIT Thus, to ensure that your "hard" constraint is fulfilled for certain, you need to set your lower variable bounds to equal your "hard" constraint (i.e. 0 in your case) plus the feasibility tolerance:

X1 >= 1.0e-7
share|improve this answer
Thank you, but this did not work – Zahy Sep 23 '12 at 17:15
Not sure what you mean by "this did not work", but please see my update for further clarification. I hope it explains more clearly what I am trying to express. – Anders Gustafsson Sep 23 '12 at 17:29
I've set the feasibility tolerance to 0 and still got the same result. Clearly, I did something wrong. However, I've found a different solution so this question is not relevant (to me) anymore. Thank you – Zahy Sep 25 '12 at 8:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.