Originally posted by: cabobHelp
Hi friends, I apologize if this is so basic.
For my research, I am implementing an algorithm to solve the Winner Determination Problem called CABOB. CABOB is a branch and bound anytime algorithm which gives an optimal result to the problem largely by pruning the search tree. The way it prunes the tree is by establishing upper and lower bounds on nodes, and it finds these bounds by solving simple Linear Programming problems. The paper which introduced this algorithm uses CPLEX, so I am wanting to use CPLEX as well
I have downloaded the trial of CPLEX, and I understand how to code the problem, constraints, etc. in the IDE, but I am limited to only that knowledge. I need to code CABOB in eclipse, and then utilize CPLEX to solve these LP problems multiple times throughout runtime.
How do I do this? How do I simply call CPLEX from an external source? I hear of cplex.jar, is this how to do it? I am so lost as to how to start
Again, I apologize that this is so basic, I am new to this sort of thing. Thanks!
#CPLEXOptimizers#DecisionOptimization