objnodesel.cpp
Go to the documentation of this file.
30 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
47 SCIP_Bool deleteobject; /**< should the node selector object be deleted when node selector is freed? */
146 /** solving process initialization method of node selector (called when branch and bound process is about to begin) */
163 /** solving process deinitialization method of node selector (called before branch and bound process data is freed) */
222 SCIP_Bool deleteobject /**< should the node selector object be deleted when node selector is freed? */
Definition: struct_nodesel.h:61
Definition: struct_scip.h:68
static SCIP_DECL_NODESELSELECT(nodeselSelectObj)
Definition: objnodesel.cpp:182
static SCIP_DECL_NODESELEXITSOL(nodeselExitsolObj)
Definition: objnodesel.cpp:165
SCIP_NODESELDATA * SCIPnodeselGetData(SCIP_NODESEL *nodesel)
Definition: nodesel.c:1120
Definition: type_retcode.h:42
scip::ObjNodesel * SCIPgetObjNodesel(SCIP *scip, SCIP_NODESEL *nodesel)
Definition: objnodesel.cpp:266
C++ wrapper for node selectors.
static SCIP_DECL_NODESELINITSOL(nodeselInitsolObj)
Definition: objnodesel.cpp:148
SCIP_NODESEL * SCIPfindNodesel(SCIP *scip, const char *name)
Definition: scip_nodesel.c:234
Definition: objbenders.h:43
void SCIPnodeselSetData(SCIP_NODESEL *nodesel, SCIP_NODESELDATA *nodeseldata)
Definition: nodesel.c:1130
scip::ObjNodesel * SCIPfindObjNodesel(SCIP *scip, const char *name)
Definition: objnodesel.cpp:247
SCIP_RETCODE SCIPincludeNodesel(SCIP *scip, const char *name, const char *desc, int stdpriority, int memsavepriority, SCIP_DECL_NODESELCOPY((*nodeselcopy)), SCIP_DECL_NODESELFREE((*nodeselfree)), SCIP_DECL_NODESELINIT((*nodeselinit)), SCIP_DECL_NODESELEXIT((*nodeselexit)), SCIP_DECL_NODESELINITSOL((*nodeselinitsol)), SCIP_DECL_NODESELEXITSOL((*nodeselexitsol)), SCIP_DECL_NODESELSELECT((*nodeselselect)), SCIP_DECL_NODESELCOMP((*nodeselcomp)), SCIP_NODESELDATA *nodeseldata)
Definition: scip_nodesel.c:60
SCIP_RETCODE SCIPincludeObjNodesel(SCIP *scip, scip::ObjNodesel *objnodesel, SCIP_Bool deleteobject)
Definition: objnodesel.cpp:219