I am working with the software, GAMS, and would appreciate some insight in a problem I am facing.
Assume that we have the following structure (grossly simplified for exposition):
Sets
i index
/i1 'Index 1'
i2 'Index 2'
i3 'Index 3'
i4 'Index 4'/
Variables
X(i);
Equations
EQX(i) ;
EQX(i).. Whatever
;
From the above, we have a separate equation for each index value i1 to i4. Is there a simple way of excluding index 3 (i3) from this set of equations without redefining a new set completely? So instead of EQX(i), the Equations would be defined for EQX(i1), EQX(i2), and EQX(i4)?
Many thanks.