put_bb_branchfuncSpecifies a user function to select a B&B branching, given the column to branch on. void put_bb_branchfunc(lprec *lp, lphandleint_intfunc newbranch, void *bb_branchhandle); Return Value put_bb_branchfunc has no return value. Parameters lp Pointer to previously created lp model. See return value of make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI newbranch The branch routine. bb_branchhandle A parameter that will be provided to the branch routine. Remarks Specifies a user function to select a B&B branching, given the column to branch on. With this function you can specify which branch must be taken first in the B&B algorithm. The floor or the ceiling. This overrules the setting of set_bb_floorfirst. Example
See Also make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, set_bb_floorfirst, get_bb_floorfirst, set_var_branch, get_var_branch, set_var_weights, get_var_priority |