フィルターのクリア

Accessing the Solution Pool of CPLEX Binary Integer Linear Programming Solver in MATLAB

2 ビュー (過去 30 日間)
Atamert Arslan
Atamert Arslan 2017 年 2 月 26 日
コメント済み: Sudarshan Kolar 2017 年 3 月 1 日
I am using the CPLEX solver for binary integer linear programming (cplexbilp) in MATLAB and would like to print out the identified alternative solutions in the solution pool. The code looks as follows:
options = cplexoptimset('cplex');
options.Display = 'on';
options.mip.tolerances.mipgap = 0;
options.parameter2058 = 1;
options.mip.pool.relgap= 0;
options.parameter2104 = 2;
[x, fval, exitflag, output] = cplexbilp (f, Aineq, bineq, Aeq, beq, ...
[ ], options);
Each time only one solution is stored in x, but I know as CPLEX tells me that there are other solutions as well.
Does anybody know how to print out those alternative solutions?
I very much appreciate your answer.
  1 件のコメント
Sudarshan Kolar
Sudarshan Kolar 2017 年 3 月 1 日
I would recommend contacting the authors of CPLEX to help you resolve the issue.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Programming and Mixed-Integer Linear Programming についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by