Search found 3 matches

by CurtisL
7 years ago
Forum: Modeling
Topic: How to iterate/loop until GAMS solution is infeasible
Replies: 2
Views: 4074

Re: How to iterate/loop until GAMS solution is infeasible

Maybe you can try "abort" command. Good luck
by CurtisL
7 years ago
Forum: Tools
Topic: Execute load and unload
Replies: 2
Views: 6162

Re: Execute load and unload

I figured it out. I need to give a dimension to the variable. So it should be like
variables x[a], y[a], z[a]
.......
by CurtisL
7 years ago
Forum: Tools
Topic: Execute load and unload
Replies: 2
Views: 6162

Execute load and unload

Dear Gams users: I am working on a problem that part of the solution of file A is the condition for file B. My intention is to run file A and unload the part of solution needed by file B. After that, file B will load the solution from file A. Regarding my intention, my code is as following: File A, ...