Hello guys!!
I am new with GAMS and maybe this is a dumb question, but I need to ask and solve my doubt. I have tried to run a specific model with “mip” as the solver. The issue appears when I want to save the results in a .csv document, the doc is not created no matter the extension ( I tried with .xls and .dat). I wrote sth like the following:
.
.
.
Model
.
.
.
solve Model minimizing cost_fun using mip;
File new_doc /new_doc.csv/;
put new_doc;
put ‘Hello World’;
putclose new_doc;
It seems like the model is compiled until the line “solve Model minimizing…”. From this point all the other lines are not compiled or at least I think that.
I kindly ask for your help.
Thank you.