Scippy

SCIP

Solving Constraint Integer Programs

Detailed Description

public methods for cut selector plugins

Author
Felipe Serrano
Mark Turner

Definition in file scip_cutsel.c.

#include "scip/debug.h"
#include "scip/cutsel.h"
#include "scip/pub_message.h"
#include "scip/scip_cutsel.h"
#include "scip/set.h"
#include "scip/struct_mem.h"
#include "scip/struct_scip.h"
#include "scip/struct_set.h"

Go to the source code of this file.

Functions

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_CUTSELSCIPfindCutsel (SCIP *scip, const char *name)
 
SCIP_CUTSEL ** SCIPgetCutsels (SCIP *scip)
 
int SCIPgetNCutsels (SCIP *scip)
 
SCIP_RETCODE SCIPsetCutselPriority (SCIP *scip, SCIP_CUTSEL *cutsel, int priority)