Binary Linear Programm: Check for feasability and multiple solutions

64 Views Asked by At

Assuming, I have binary integer program, e.g. given by:

$ \arg\min_x \quad 0\\ \text{such that}\quad A_\text{eq} x = b_\text{eq}, x_i \in \{0,1\} $

Where also $[A_\text{eq}]_{ij} \in \{0,1\} $ and $b_\text{eq} \in \{0,1,2,\ldots\} $

  1. Is there any way to check whether this opt. problem is feasible?
  2. Is there a way to check whether there exist multiple solutions?