C++ wrapper for node selectors.
Definition in file objnodesel.h.
Go to the source code of this file.
Data Structures | |
| class | scip::ObjNodesel |
| C++ wrapper for node selectors. More... | |
Namespaces | |
| namespace | scip |
Functions | |
| SCIP_RETCODE | SCIPincludeObjNodesel (SCIP *scip, scip::ObjNodesel *objnodesel, SCIP_Bool deleteobject) |
| scip::ObjNodesel * | SCIPfindObjNodesel (SCIP *scip, const char *name) |
| scip::ObjNodesel * | SCIPgetObjNodesel (SCIP *scip, SCIP_NODESEL *nodesel) |
| SCIP_RETCODE SCIPincludeObjNodesel | ( | SCIP * | scip, |
| scip::ObjNodesel * | objnodesel, | ||
| SCIP_Bool | deleteobject ) |
creates the node selector for the given node selector object and includes it in SCIP
The method should be called in one of the following ways:
creates the node selector for the given node selector object and includes it in SCIP
| scip | SCIP data structure |
| objnodesel | node selector object |
| deleteobject | should the node selector object be deleted when node selector is freed? |
Definition at line 219 of file objnodesel.cpp.
References assert(), NULL, SCIP_Bool, SCIP_CALL, scip::ObjNodesel::scip_desc_, scip::ObjNodesel::scip_memsavepriority_, scip::ObjNodesel::scip_name_, SCIP_OKAY, scip::ObjNodesel::scip_stdpriority_, and SCIPincludeNodesel().
Referenced by SCIP_DECL_NODESELCOPY().
| scip::ObjNodesel * SCIPfindObjNodesel | ( | SCIP * | scip, |
| const char * | name ) |
returns the nodesel object of the given name, or 0 if not existing
| scip | SCIP data structure |
| name | name of node selector |
Definition at line 247 of file objnodesel.cpp.
References assert(), NULL, SCIPfindNodesel(), and SCIPnodeselGetData().
| scip::ObjNodesel * SCIPgetObjNodesel | ( | SCIP * | scip, |
| SCIP_NODESEL * | nodesel ) |
returns the nodesel object for the given node selector
| scip | SCIP data structure |
| nodesel | node selector |
Definition at line 266 of file objnodesel.cpp.
References assert(), NULL, and SCIPnodeselGetData().