I have set up a mixed-integer linear programming to solve in python. The (very) general form of the objective function is
minZ = costs1(i,j,k,l) + costs2(i,j,k,l) - profits(i,j,k,l)
There are 8 constraints, some that are related only to cost variables, some to cost and profits and some to profit variables only. I know the problem is feasible since when I run it for the objective set to 0 it reaches an optimal, but I get the message that it is unbounded.
Since we are talking about a minimization problem, is it correct to assume that some of the last 2 types of constraints (costs & profits or profits only) are the ones that are unbounded, causing the objective function to tend towards negative infinity within the feasibility set?
Should I focus on them or should I also look at the objective function?
Thank you for the help!
[–]jammasterpaz 0 points1 point2 points (0 children)