I've got an integer linear program of the form $$ \begin{aligned} \text{Minimize}&& c &= x_1 + \cdots + x_m \\ \text{subject to}&& A\mathbf{x} &\geq \mathbf{b} \\ \text{where} && \mathbf{x} &\in \mathbb{Z}^m,\ \mathbf{x}\geq\mathbf{0},\ \\ && \mathbf{b} &\in \mathbb{R}^n,\ \mathbf{b}\geq\mathbf{0},\ \\ && A&\in \mathbb{R}^{n\times m}\ . \end{aligned} $$ So, most importantly, both my coefficient vector $\mathbf{x}$ and $\mathbf{b}$ are always nonnegative in every component, and there is no "$\leq$" limit on anything. $A$ is an arbitrarily (finite) real-valued matrix. This is solvable in a straightforward manner in any standard LP solver. But what I've been trying to figure out is if there is a simpler way to just determine whether the given problem has any solution at all – not worrying about which solution is the optimal one.
In other words, the question is whether there exists an $\mathbf{x}\in\mathbb{Z}^m$, $\mathbf{x}\geq\mathbf{0}$, so that $A\mathbf{x}\geq\mathbf{b}$ (with $\mathbf{b}\geq\mathbf{0}$).
Mike's contributions below have been quite valuable, and it still seems as though there is no simpler way to determine this – but we're still not quite sure, so I'm leaving this question open a little longer.
I do think, however, that in my special case one thing holds: Given the conditions above, if a solution exists for the relaxed problem (i.e., $\mathbf{x}\in\mathbb{R}^m$, $\mathbf{x}\geq\mathbf{0}$), then an integral solution exists as well. I have placed this in a separate question. But assuming it holds, maybe the relaxed version does have a simpler way to check for solvability?
Do you happen to have a direction in which to point me, or an idea of how to go about this? Or, maybe, is Simplex the only way to find out?
Thanks in advance for any hints!