is there a way to enter some input data in miro and use this input data as an argument in a $call command? Following code will run just fine, but my argument will be in every case ‘1’ no matter what I set as input(2,3,…).
MIRO currently assigns values to GAMS parameters at the end of the compilation phase (right before the start of the execution phase). Therefore, Input is always 1 at the time your expression is evaluated. Admittedly, this behavior is not entirely intuitive and will most likely change before MIRO is officially released.
However, MIRO allows you to set GAMS command line parameters. This means that using the following MIRO configuration file sets the compile time variable tmp for you and should therefore achieve what you want to do:
thank you and sorry, I knew that I read something about the compilation phase a while a go and for what ever reason I did not check the configuration documentation again