Given $b_i,c_{i,j}\in \mathrm N^+, R_i(X_1,X_2,X_3,X_4)=\sum_jc_{i,j}X_j$ :
$0< R_1(x_1,x_2,x_3,x_4) < b_1$
$0< R_2(x_1,x_2,x_3,x_4) < b_2$
...
$0< R_n(x_1,x_2,x_3,x_4) < b_n$
Want to find all integer solutions with $0<x_1<x_2<x_3<x_4$
Is there a general algorithm to find integer solutions for these kind of inequalities?
You can use Integer (Linear) Programming with a constant objective function, i.e. $\mathbf{c} = \mathbf{0}$ (the ILP $\mathbf{c}$, not your $c$, of course). However, ILP is NP-hard, but if you have not more than a few hundred variables you should be fine with today's solvers.
I'm also not sure about finding all the solutions in the existing frameworks but this small paper is aimed to that task and it should be theoretically possible.