2

I am using the following code but I have not been able to set up the problem to run.

import numpy as np
from scipy.optimize import linprog

c = np.asarray([-0.098782540360068297, -0.072316526358138802, 0.004, 0.004, 0.004, 0.004])
A_ub = np.asarray([[1.0, 0, 0, 0, 0, 0], [-1.0, 0, 0, 0, 0, 0], [0, -1.0, 0, 0, 0, 0], [0, 1.0, 0, 0, 0, 0], [1.0, 1.0, 0, 0, 0, 0]])
b_ub = np.asarray([3.0, 3.0, 3.0, 3.0, 20.0])
A_eq = np.asarray([[1.0, 0, -1, 1, -1, 1], [0, -1.0, -1, 1, -1, 1]])
b_eq = np.asarray([0,0])
res = linprog(c, A_ub, b_ub, A_eq, b_eq)
lb = np.zeros([6,1]) #lower bound for x array
ub = np.ones([6,1])*2 #upper bound for x array
res2 = linprog(c, A_ub, b_ub, bounds=(lb, ub))

I get error as:

ValueError: Invalid input for linprog with method = 'simplex'.  Length of bounds is inconsistent with the length of c

1 Answer 1

4

The bounds parameter wants a list of pairs. Use something like:

lb = np.zeros(6) #lower bound for x array
ub = np.ones(6)*2 #upper bound for x array
res2 = linprog(c, A_ub, b_ub, bounds=list(zip(lb, ub)))
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.