In this case:
sets
m /m1*m5/
v /v1*v4/
I want to use just elements from "v1" to "v3" for a particular variable:
positive variables
Q(m,v)
R(m,v)
And in the following objective function or equations, these variables are calculated as just excluded elements.
I mean Q(m,v) include "v1", "v2" and "v3"; and R(m,v) include "v4".
obj .. Q(m,v) + R(m,v)
eq1(m) .. sum(v, Q(m,v))
eq2(v) .. sum(m, Q(m,v) + R(m,v))
How can I exclude the element "v4" in variables for obj and eq1?