I’m pretty new to GAMS so apologies in advance if my terminology is a bit off.
I’m using one GAMS file to call another like this:
$call gams Solve.gms
My actual model is solved in Solve.gms. The problem is, when I call Solve.gms like this, the active process window doesn’t show me all the details of the solution process (iterations, solve speed, etc). Is there any way to get it to show this?
Josh
–
To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/d/optout.
Josh,
add lo=3 to you $call to instruct GAMS to send the log to stdout:
$call gams Solve.gms lo=3
Do the same with the outside program. Than you should see log from both runs nicely merged. The default (lo=1) sends it to the console.
Hope this helps,
Michael Bussieck - GAMSWorld Coordinator
On Thursday, February 19, 2015 at 2:03:09 AM UTC-5, Josh Craig wrote:
I’m pretty new to GAMS so apologies in advance if my terminology is a bit off.
I’m using one GAMS file to call another like this:
$call gams Solve.gms
My actual model is solved in Solve.gms. The problem is, when I call Solve.gms like this, the active process window doesn’t show me all the details of the solution process (iterations, solve speed, etc). Is there any way to get it to show this?
Josh
–
To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/d/optout.
Yep, that does it. Thanks Michael!
\
To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/d/optout.