What are the default GAMS solvers, and how do I make GAMS use a solver other than the default?
• LP: MINOS • MIP: BDMLP • RMIP: MINOS • NLP: MINOS • MCP: MILES • MPEC: NLPEC • CNS: CONOPT • DNLP: MINOS • RMINLP: MINOS • MINLP: DICOPT • QCP: MINOS • MIQCP: CPLEX • RMIQCP: MINOS You can override the default and use a different solver by using an option statement; just add the following line to your gams command file (before the solve statement) option rminlp=conopt; [ Back to FAQs ]