type definitions for cut selectors
Definition in file type_cutsel.h.
#include "scip/def.h"
#include "scip/type_retcode.h"
#include "scip/type_scip.h"
#include "scip/type_lp.h"
#include "scip/type_result.h"
Go to the source code of this file.
Macros | |
#define | SCIP_DECL_CUTSELCOPY(x) |
#define | SCIP_DECL_CUTSELFREE(x) |
#define | SCIP_DECL_CUTSELINIT(x) |
#define | SCIP_DECL_CUTSELEXIT(x) |
#define | SCIP_DECL_CUTSELINITSOL(x) |
#define | SCIP_DECL_CUTSELEXITSOL(x) |
#define | SCIP_DECL_CUTSELSELECT(x) |
#define SCIP_DECL_CUTSELCOPY | ( | x | ) |
copy method for cut selector plugins (called when SCIP copies plugins)
input:
Definition at line 62 of file type_cutsel.h.
Referenced by doCutselCreate(), SCIPcutselCreate(), SCIPcutselSetCopy(), SCIPincludeCutsel(), and SCIPsetCutselCopy().
#define SCIP_DECL_CUTSELFREE | ( | x | ) |
destructor of cut selector to free user data (called when SCIP is exiting)
input:
Definition at line 70 of file type_cutsel.h.
Referenced by doCutselCreate(), SCIPcutselCreate(), SCIPcutselSetFree(), SCIPincludeCutsel(), and SCIPsetCutselFree().
#define SCIP_DECL_CUTSELINIT | ( | x | ) |
initialization method of cut selector (called after problem was transformed)
input:
Definition at line 78 of file type_cutsel.h.
Referenced by doCutselCreate(), SCIPcutselCreate(), SCIPcutselSetInit(), SCIPincludeCutsel(), and SCIPsetCutselInit().
#define SCIP_DECL_CUTSELEXIT | ( | x | ) |
deinitialization method of cut selector (called before transformed problem is freed)
input:
Definition at line 86 of file type_cutsel.h.
Referenced by doCutselCreate(), SCIPcutselCreate(), SCIPcutselSetExit(), SCIPincludeCutsel(), and SCIPsetCutselExit().
#define SCIP_DECL_CUTSELINITSOL | ( | x | ) |
solving process initialization method of cut selector (called when branch and bound process is about to begin)
This method is called when the presolving was finished and the branch and bound process is about to begin. The cut selector may use this call to initialize its branch and bound specific data.
input:
Definition at line 97 of file type_cutsel.h.
Referenced by SCIPcutselSetInitsol(), and SCIPsetCutselInitsol().
#define SCIP_DECL_CUTSELEXITSOL | ( | x | ) |
solving process deinitialization method of cut selector (called before branch and bound process data is freed)
This method is called before the branch and bound process is freed. The cut selector should use this call to clean up its branch and bound data.
input:
Definition at line 108 of file type_cutsel.h.
Referenced by SCIPcutselSetExitsol(), and SCIPsetCutselExitsol().
#define SCIP_DECL_CUTSELSELECT | ( | x | ) |
cut selection method of cut selector
This method is called to select the cuts to be added to the LP. Forcedcuts must not be changed, and cuts should only be resorted, with the first nselectedcuts of cuts being chosen. These nselectededcuts are used in addition to the forcedcuts (do not delete nor modify elements, simply resort).
input:
possible return values for *result (if more than one applies, the first in the list should be used):
Definition at line 132 of file type_cutsel.h.
typedef struct SCIP_Cutsel SCIP_CUTSEL |
cut selector data structure
Definition at line 52 of file type_cutsel.h.
typedef struct SCIP_CutselData SCIP_CUTSELDATA |
cut selector specific data
Definition at line 53 of file type_cutsel.h.