type definitions for handling parameter settings
Definition in file type_paramset.h.
Go to the source code of this file.
Macros | |
#define | SCIP_DECL_PARAMCHGD(x) |
#define SCIP_DECL_PARAMCHGD | ( | x | ) |
information method for changes in the parameter
Method is called if the parameter was changed through a SCIPparamsetSetXyz() call (which is called by SCIPsetXyzParam()). It will not be called, if the parameter was changed directly by changing the value in the memory location.
input: scip : SCIP main data structure param : the changed parameter (already set to its new value)
Definition at line 102 of file type_paramset.h.
Referenced by paramCreate(), paramCreateBool(), paramCreateChar(), paramCreateInt(), paramCreateLongint(), paramCreateReal(), paramCreateString(), SCIPaddBoolParam(), SCIPaddCharParam(), SCIPaddIntParam(), SCIPaddLongintParam(), SCIPaddRealParam(), SCIPaddStringParam(), SCIPparamsetAddBool(), SCIPparamsetAddChar(), SCIPparamsetAddInt(), SCIPparamsetAddLongint(), SCIPparamsetAddReal(), and SCIPparamsetAddString().
typedef enum SCIP_ParamType SCIP_PARAMTYPE |
Definition at line 54 of file type_paramset.h.
typedef enum SCIP_ParamSetting SCIP_PARAMSETTING |
Definition at line 65 of file type_paramset.h.
typedef enum SCIP_ParamEmphasis SCIP_PARAMEMPHASIS |
Definition at line 84 of file type_paramset.h.
typedef struct SCIP_Param SCIP_PARAM |
single parameter
Definition at line 86 of file type_paramset.h.
typedef struct SCIP_ParamData SCIP_PARAMDATA |
locally defined parameter specific data
Definition at line 87 of file type_paramset.h.
typedef struct SCIP_ParamSet SCIP_PARAMSET |
set of parameters
Definition at line 88 of file type_paramset.h.
enum SCIP_ParamType |
possible parameter types
Definition at line 45 of file type_paramset.h.
enum SCIP_ParamSetting |
possible parameter settings - used to determine the behavior of different SCIP components, e.g., heuristics, separators, ...
Enumerator | |
---|---|
SCIP_PARAMSETTING_DEFAULT | use default values |
SCIP_PARAMSETTING_AGGRESSIVE | set to aggressive settings |
SCIP_PARAMSETTING_FAST | set to fast settings |
SCIP_PARAMSETTING_OFF | turn off |
Definition at line 57 of file type_paramset.h.
enum SCIP_ParamEmphasis |
possible parameter emphases - used to determine the general SCIP behavior
Definition at line 68 of file type_paramset.h.