I'm looking for advice on solving ILP problems with a relatively small number of constraints and variables, but very large coefficients. I have less than 500 variables and constraints, but my coefficients are all greater than 1000 bits. I'm concerned about numerical stability issues for the solver when dealing with such large coefficients.
My problem has purely linear constraints and I am trying to minimize a linear objective. The problem domain is cryptanalysis. The constraint matrix is extremely dense.
Are there any solvers in particular that excel in this domain? Are there particular settings or algorithms I should use to prevent numerical stability issues?
I would also be interested in LP solvers that can handle huge coefficients if the support is better there, as I can likely use rounding to obtain a pretty good solution for the ILP from a solution to the LP.