public methods for cut selector plugins
- Author
- Felipe Serrano
-
Mark Turner
Definition in file scip_cutsel.h.
|
SCIP_RETCODE | SCIPincludeCutsel (SCIP *scip, const char *name, const char *desc, int priority, SCIP_DECL_CUTSELCOPY((*cutselcopy)), SCIP_DECL_CUTSELFREE((*cutselfree)), SCIP_DECL_CUTSELINIT((*cutselinit)), SCIP_DECL_CUTSELEXIT((*cutselexit)), SCIP_DECL_CUTSELINITSOL((*cutselinitsol)), SCIP_DECL_CUTSELEXITSOL((*cutselexitsol)), SCIP_DECL_CUTSELSELECT((*cutselselect)), SCIP_CUTSELDATA *cutseldata) |
|
SCIP_RETCODE | SCIPincludeCutselBasic (SCIP *scip, SCIP_CUTSEL **cutsel, const char *name, const char *desc, int priority, SCIP_DECL_CUTSELSELECT((*cutselselect)), SCIP_CUTSELDATA *cutseldata) |
|
SCIP_RETCODE | SCIPsetCutselCopy (SCIP *scip, SCIP_CUTSEL *cutsel, SCIP_DECL_CUTSELCOPY((*cutselcopy))) |
|
SCIP_RETCODE | SCIPsetCutselFree (SCIP *scip, SCIP_CUTSEL *cutsel, SCIP_DECL_CUTSELFREE((*cutselfree))) |
|
SCIP_RETCODE | SCIPsetCutselInit (SCIP *scip, SCIP_CUTSEL *cutsel, SCIP_DECL_CUTSELINIT((*cutselinit))) |
|
SCIP_RETCODE | SCIPsetCutselExit (SCIP *scip, SCIP_CUTSEL *cutsel, SCIP_DECL_CUTSELEXIT((*cutselexit))) |
|
SCIP_RETCODE | SCIPsetCutselInitsol (SCIP *scip, SCIP_CUTSEL *cutsel, SCIP_DECL_CUTSELINITSOL((*cutselinitsol))) |
|
SCIP_RETCODE | SCIPsetCutselExitsol (SCIP *scip, SCIP_CUTSEL *cutsel, SCIP_DECL_CUTSELEXITSOL((*cutselexitsol))) |
|
SCIP_CUTSEL * | SCIPfindCutsel (SCIP *scip, const char *name) |
|
SCIP_CUTSEL ** | SCIPgetCutsels (SCIP *scip) |
|
int | SCIPgetNCutsels (SCIP *scip) |
|
SCIP_RETCODE | SCIPsetCutselPriority (SCIP *scip, SCIP_CUTSEL *cutsel, int priority) |
|