How to find all the possible feasible solutions to a integer linear programme?

조회 수: 14 (최근 30일)
I have following question:
  1. # of decision variables : 20; These can take the values {0,1} (integers)
  2. I have linear inequality constraints ( functions of above decision variables)
  3. I do not have any objective function.
Can I get set of all feasible solutions ( which just satisfty the linear inequality / equality constraints ? I do not want to optimize anything. I want to have the set of all feasible points.
Is it doable ?

채택된 답변

Matt J
Matt J 2021년 4월 17일
편집: Matt J 2021년 4월 17일
For R^20, yes. Just do an exhaustive search,
[x{1:20}]=ndgrid([0,1]);
x=reshape( cat(21,x{:}) ,[],20).';
feasible = x(:, all(A*x<=b+tolerance,1) ); %20xN matrix of feasible solutions.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by