For fun, I explored vertex enumeration algorithms for linear programs to find all feasible extreme points in a polytope. Naturally, I asked, "Do there exist algorithms that solve for all integer points within a polytope?", but I found only two sources that discuss this topic: this paper and this CS StackExchange question. Thus, there doesn't seem to be much research on this topic. Does there exist more papers or lectures on this topic?
Currently, I'm working on a Branch & Bound algorithm that only fathoms when it reaches infeasible solutions (in that it uniquely branches on integer solutions to find neighboring integer solutions), but I would like more resources that discuss existing algorithms that solve for all integer points such that while exploring and implementing other approaches, it can assist/improve the Branch & Cut approach I'm trying to implement.