Originally posted by: SystemAdmin
[EdKlotz said:]
> how can I do the coding of Column generation (Branch& price) method ? Is it > possible to apply Column generation using Cplex7.5 & Java? Any one have an
> idea abt this topic plz let me know...
CPLEX allows you to add columns to a previously optimized model in any of
its APIs, including Java. Refer to the CutStock.java program that comes with your distribution, regardless of version number. The IloColumn class is the
key to implementing this.
However, Branch and Price is a more specialized version of column generation that often involves dynamically adding columns to individual node LPs. If you
wish to do that, CPLEX does not directly support it. You would need to essentially maintain your own branch and bound tree, then use CPLEX to solve the node subproblems you create and maintain.
#CPLEXOptimizers#DecisionOptimization