Originally posted by: iturkmen
Hi,
I want to have a branch and bound procedure which always select the largest fractional value of the variable while selecting a variable to any branch. The basic algorithm should be like this:
1.solve LP relaxation, and find the largest fractional value of decision variables.
2.Set this variable to 1 and solve the LP relaxation.
3. Find the largest fractional value of unselect decision variables.
4.Set this variable to 1 and solve the LP relaxation.
5. Do this until find a integer solution.
Is there any function(callback etc.) that I can do this procedure? or should I write a heuristic code for this?
Thanks.
#CPLEXOptimizers#DecisionOptimization