I have the following problem. I want to solve a number of MINLP's in the following manner:
- Create .gms file using pyomo
- Solve model on a server with the gams license and solver's like BARON and SCIP
- Use the solution of the current MINLP for the next MINLP
- Go to 1.
Now I have some questions:
- What is the best way to read the solution of the previous MINLP (right now I'm reading the .dat file)
- How can I change the default gams/mipstart option to a value of 3? (I tried: io_options['add_options']=['option gams/mipstart = 3;'] but didn't work)