I want to define a dynamic set in GAMS, General Algebraic Modeling System. For example, consider the next line:
Set i "Customers" /1*100/;
Sometimes it will be /1x50/ and sometimes /1x100/. For this aim, I wrote something like /1*I/ where I will be a parameter that will be defined later, but it is not accepted. What can I do about it?