Hi,
I am interested in techniques that can prove that an integer linear program has no solutions. I am just looking at feasibility and have no objective function to maximize etc.
This is part of the best known algorithm for calculation optimal addition chains. The system I want to check for infeasibility is quite simple. It's just the Frobenius diophantine equation with an upper bound on the variables.
$\sum_{i=1}^{z}a_{i}x_{i}=n$
With $1\leq x_{i}\leq u$. $a_i$ and $n$ are constants determined by a partial search for an addition chains.
The code that uses this will try to solve billions of small problems like this.
I currently use branch and bound to try and prove there are no solutions or reject the few there are with additional problem constraints.