How to choose an integer linear programming solver?

前端 未结 5 2003
一整个雨季
一整个雨季 2020-12-15 17:24

I am newbie for integer linear programming. I plan to use a integer linear programming solver to solve my combinatorial optimization problem. I am more familiar with C++/obj

5条回答
  •  醉话见心
    2020-12-15 18:02

    For large problems, you might look at AMPL, which is an optimization interpreter with many backend solvers available. It runs as a separate process; C++ would be used to write out the input data.

    Then you could try various state-of-the-art solvers.

提交回复
热议问题