Search found 3 matches

by andcoo
5 years ago
Forum: Modeling
Topic: can't model scheduling problem
Replies: 3
Views: 3691

Re: can't model scheduling problem

Hi You have lots of errors in your code, so I would suggest that you have a closer look at the introductory chapter of the GAMS documentation. Gams always usually gives you a clear message on what went wrong. Debugging in Gams starts with correcting the first error that appears and rerun the code a...
by andcoo
5 years ago
Forum: Modeling
Topic: can't model scheduling problem
Replies: 3
Views: 3691

Re: can't model scheduling problem

Set i "plant locations" / palmasola, pto-suarez, potosi, baranquill, cartagena /; Alias(i,ip); Table tran(i,i) "transport cost for interplant shipments (us$ per ton)" palmasola pto-suarez potosi baranquill pto-suarez 87.22 potosi 31.25 55.97 baranquill 89.80 114.56 70.68 cartage...
by andcoo
5 years ago
Forum: Modeling
Topic: can't model scheduling problem
Replies: 3
Views: 3691

can't model scheduling problem

Hi, I'm trying to create a model that schedules the activities based on the setup time between the activities and that saturates the production capacity (otherwise the solution would not produce) this is what I would like (but donìt work because i can't do single dimension table) SET order/i1*i5/; P...