I try to correctly write a linear programming model for my problem.
I want to minimize the sum of w_i
and i have the following constraint:
(a_i+w_i ≤ w_j) XOR (a_j+w_j ≤ w_i)
a_i and a_j are integer constants
w_i and w_j are integer variables
in general, when we write the standard form of the system, we have equations where the write part represents the maximum or the minimum quantity of product, this quantity is well defined but in my problem both w_i
and w_j
are unknown, they should be computed by my ILP, so i can't define de budget b
when writing the standard form an when formulating the first table which correspond to the standard form! how can i do this please?!
Re: i use the simplex method all variables are integer