XPRSremovecbsepnode
XPRSremovecbsepnode |
Purpose
This function is deprecated and may be removed in future releases. Please use branching objects instead. Removes a pre-integer solution callback function previously added by
XPRSaddcbsepnode. The specified callback function will no longer be called after it has been removed.
Synopsis
int XPRS_CC XPRSremovecbsepnode(XPRSprob prob, int (XPRS_CC *f_sepnode)(XPRSprob prob, void* vContext, int ibr, int iglsel, int ifup, double curval), void* object);
Arguments
prob
|
The current problem.
|
f_sepnode
|
The callback function to remove. If NULL then all separation callback functions added with the given user-defined object value will be removed.
|
object
|
The object value that the callback was added with. If NULL, then the object value will not be checked and all separation callbacks with the function pointer
f_sepnode will be removed.
|
Related topics