LP relaxation in SCIP

梦想的初衷 提交于 2019-12-11 08:28:59

问题


I'm trying to solve a MIP using the SCIP command line, with the problem input in CPLEX LP format. However, due to large number of variables, the optimization is taking a lot of time. Is there some way to compute the LP Relaxtion solution of the same MIP in SCIP?

Or any other way to get an approximate, somewhat suboptimal solution?


回答1:


If you are just interested in the LP relaxation you should try to use SoPlex to solve your problem. If you want to limit the computation time in SCIP you can set a node limit, a solution limit, an objective limit, a time limit or a combination of these. You can find these settings in set/limits/ in the interactive shell



来源:https://stackoverflow.com/questions/22709905/lp-relaxation-in-scip

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!