please can you help me in solving this problem
I have totally uni-modular matrix A multiplied by set of Binary variables X.
it means that A*X<=B
how to solve this problem in polynomial time .. I am interested in finding just one feasible solution.
For example I have:
A= [ 1 1 1 0 0 0 0 0 ;
0 0 1 1 1 1 0 0 ;
0 0 0 0 1 1 1 1 ;
1 1 1 1 1 0 0 0 ;
0 0 0 0 0 1 1 1 ;
-1 -1 -1 -1 0 0 0 0 ;
0 -1 -1 -1 -1 0 0 0 ;
0 0 0 -1 -1 -1 -1 0 ;
0 0 0 0 0 -1 -1 -1 ];
B= [ 2 ; 2; 2; 3; 2;-3;-3;-2;-2];
A\B = X?