There are some statements in your PDF file that I'm finding hard to digest (and in some cases appear incorrect to me).
In any case, there is an extension of D-W to integer programming. While I'm not particularly familiar with it, my impression is that the RMP is an integer program, not an LP. You relax the RMP to an LP to get dual prices, use them to generate new columns (which must be integer feasible in the original problem), add them to the (relaxed) RMP and continue until no new columns are generated. To this point, it resembles the G-G heuristic, although that was intended for a very specific problem (cutting stock). My understanding is that once column generation stops, you have to solve the RMP as an integer program to get a candidate solution to the original problem. Also (and again, I stress this is not something I use myself), my understanding is that this is typically embedded in a branch-and-price framework.
So my guess is that, assuming your problem requires column generation, you will want to use branch-and-price, and D-W may be employed at nodes of the search tree. But that's just a guess.
#DecisionOptimization#MathematicalProgramming-General