put_bb_nodefuncAllows to set a user function that specifies which non-integer variable to select next to make integer in the B&B solve. void put_bb_nodefunc(lprec *lp, lphandleint_intfunc newnode, void *bbnodehandle); Return Value put_bb_nodefunc 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 newnode The node selection routine. bb_nodehandle A parameter that will be provided to the node selection routine. Remarks Allows to set a user function that specifies which non-integer variable to select next to make integer in the B&B solve. Via this routine the user can implement his own rule to select the next non-integer variable to make integer. This overrules the setting of set_bb_rule. Example
See Also make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, set_bb_rule |