|
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
set.h
Go to the documentation of this file.
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
60 /** copies plugins from sourcescip to targetscip; in case that a constraint handler which does not need constraints
61 * cannot be copied, valid will return FALSE. All plugins can declare that, if their copy process failed, the
116 /** creates a SCIP_Bool parameter, sets it to its default value, and adds it to the parameter set */
148 /** creates a SCIP_Longint parameter, sets it to its default value, and adds it to the parameter set */
165 /** creates a SCIP_Real parameter, sets it to its default value, and adds it to the parameter set */
193 const char* allowedvalues, /**< array with possible parameter values, or NULL if not restricted */
198 /** creates a string parameter, sets it to its default value, and adds it to the parameter set */
430 SCIP_Bool onlychanged /**< should only the parameters been written, that are changed from default? */
472 /** sets parameters to deactivate separators and heuristics that use auxiliary SCIP instances; should be called for
583 /** reinserts a constraint handler with modified sepa priority into the sepa priority sorted array */
1018 * This is useful, if the value, e.g., the activity of a linear constraint or the pseudo objective value, gets a high
1019 * absolute value during the optimization process which is later reduced significantly. In this case, the last digits
1021 * We dot not consider the cancellations which can occur during increasing the absolute value because they just cannot
1023 * The idea to get more reliable values is to always store the last reliable value, where increasing the absolute of
1024 * the value is viewed as preserving reliability. Then, after each update, the new absolute value can be compared
1025 * against the last reliable one with this method, checking whether it was decreased by a factor of at least
1041 /** returns the minimum value that is regarded as huge and should be handled separately (e.g., in activity
1067 /** returns primal feasibility tolerance of LP solver given as minimum of lpfeastol option and tolerance specified by separation storage */
1073 /** returns primal feasibility tolerance as specified by separation storage, or SCIP_INVALID */
1163 /** checks, if value is huge and should be handled separately (e.g., in activity computation) */
1441 /** checks, if relative difference of val1 and val2 is lower than dual feasibility tolerance */
1449 /** checks, if relative difference of val1 and val2 is not greater than dual feasibility tolerance */
1457 /** checks, if relative difference of val1 and val2 is greater than dual feasibility tolerance */
1465 /** checks, if relative difference of val1 and val2 is not lower than -dual feasibility tolerance */
1536 /** checks, if the given new lower bound is tighter (w.r.t. bound strengthening epsilon) than the old one */
1545 /** checks, if the given new upper bound is tighter (w.r.t. bound strengthening epsilon) than the old one */
1645 /* In optimized mode, the function calls are overwritten by defines to reduce the number of function calls and
1654 #define SCIPsetLpfeastol(set) ( (set)->sepa_primfeastol == SCIP_INVALID ? (set)->num_lpfeastol : MIN((set)->num_lpfeastol, (set)->sepa_primfeastol) )
1696 #define SCIPsetIsFeasLE(set, val1, val2) ( !EPSP(SCIPrelDiff(val1, val2), (set)->num_feastol) )
1698 #define SCIPsetIsFeasGE(set, val1, val2) ( !EPSN(SCIPrelDiff(val1, val2), (set)->num_feastol) )
1709 #define SCIPsetIsDualfeasEQ(set, val1, val2) ( EPSZ(SCIPrelDiff(val1, val2), (set)->num_dualfeastol) )
1710 #define SCIPsetIsDualfeasLT(set, val1, val2) ( EPSN(SCIPrelDiff(val1, val2), (set)->num_dualfeastol) )
1711 #define SCIPsetIsDualfeasLE(set, val1, val2) ( !EPSP(SCIPrelDiff(val1, val2), (set)->num_dualfeastol) )
1712 #define SCIPsetIsDualfeasGT(set, val1, val2) ( EPSP(SCIPrelDiff(val1, val2), (set)->num_dualfeastol) )
1713 #define SCIPsetIsDualfeasGE(set, val1, val2) ( !EPSN(SCIPrelDiff(val1, val2), (set)->num_dualfeastol) )
1729 ( root ? EPSP(efficacy, (set)->sepa_minefficacyroot) : EPSP(efficacy, (set)->sepa_minefficacy) )
1737 #define SCIPsetIsSumRelEQ(set, val1, val2) ( EPSZ(SCIPrelDiff(val1, val2), (set)->num_sumepsilon) )
1738 #define SCIPsetIsSumRelLT(set, val1, val2) ( EPSN(SCIPrelDiff(val1, val2), (set)->num_sumepsilon) )
1739 #define SCIPsetIsSumRelLE(set, val1, val2) ( !EPSP(SCIPrelDiff(val1, val2), (set)->num_sumepsilon) )
1740 #define SCIPsetIsSumRelGT(set, val1, val2) ( EPSP(SCIPrelDiff(val1, val2), (set)->num_sumepsilon) )
1741 #define SCIPsetIsSumRelGE(set, val1, val2) ( !EPSN(SCIPrelDiff(val1, val2), (set)->num_sumepsilon) )
1748 #define SCIPsetAllocBufferArray(set,ptr,num) ( SCIPbufferAllocMem((set)->buffer, set, (void**)(ptr), \
1753 #define SCIPsetReallocBufferArray(set,ptr,num) ( SCIPbufferReallocMem((set)->buffer, set, (void**)(ptr), \
1757 #define SCIPsetAllocBufferArray(set,ptr,num) ( SCIPbufferAllocMemSave(set, (void**)(ptr), num, sizeof(**(ptr))) )
1758 #define SCIPsetDuplicateBufferArray(set,ptr,source,num) ( SCIPbufferDuplicateMemSave(set, (void**)(ptr), source, num, sizeof(**(ptr))) )
1759 #define SCIPsetReallocBufferArray(set,ptr,num) ( SCIPbufferReallocMemSave(set, (void**)(ptr), num, sizeof(**(ptr))) )
1762 #define SCIPsetAllocBuffer(set,ptr) ( SCIPbufferAllocMem((set)->buffer, set, (void**)(ptr), (int) sizeof(**(ptr))) )
1763 #define SCIPsetAllocBufferSize(set,ptr,size) ( SCIPbufferAllocMem((set)->buffer, set, (void**)(ptr), size) )
1766 #define SCIPsetReallocBufferSize(set,ptr,size) ( SCIPbufferReallocMem((set)->buffer, set, (void**)(ptr), size) )
SCIP_RETCODE SCIPsetCopyPlugins(SCIP_SET *sourceset, SCIP_SET *targetset, SCIP_Bool copyreaders, SCIP_Bool copypricers, SCIP_Bool copyconshdlrs, SCIP_Bool copyconflicthdlrs, SCIP_Bool copypresolvers, SCIP_Bool copyrelaxators, SCIP_Bool copyseparators, SCIP_Bool copypropagators, SCIP_Bool copyheuristics, SCIP_Bool copyeventhdlrs, SCIP_Bool copynodeselectors, SCIP_Bool copybranchrules, SCIP_Bool copydisplays, SCIP_Bool copydialogs, SCIP_Bool copynlpis, SCIP_Bool *allvalid) Definition: set.c:579 SCIP_Bool SCIPsetIsSumEQ(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4870 SCIP_NODESEL * SCIPsetFindNodesel(SCIP_SET *set, const char *name) Definition: set.c:3520 Definition: struct_presol.h:36 Definition: struct_nodesel.h:51 SCIP_RETCODE SCIPsetWriteParams(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *filename, SCIP_Bool comments, SCIP_Bool onlychanged) Definition: set.c:2561 SCIP_RETCODE SCIPsetIncludeDialog(SCIP_SET *set, SCIP_DIALOG *dialog) Definition: set.c:3704 Definition: struct_reader.h:35 SCIP_RETCODE SCIPsetGetBoolParam(SCIP_SET *set, const char *name, SCIP_Bool *value) Definition: set.c:2178 SCIP_RETCODE SCIPsetIncludeReader(SCIP_SET *set, SCIP_READER *reader) Definition: set.c:2709 SCIP_Bool SCIPsetIsLbBetter(SCIP_SET *set, SCIP_Real newlb, SCIP_Real oldlb, SCIP_Real oldub) Definition: set.c:5371 Definition: struct_scip.h:52 SCIP_Bool SCIPsetIsFeasFracIntegral(SCIP_SET *set, SCIP_Real val) Definition: set.c:5131 SCIP_Bool SCIPsetIsSumRelLE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5534 SCIP_Bool SCIPsetIsSumRelGE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5566 int SCIPsetGetPriceMaxvars(SCIP_SET *set, SCIP_Bool root) Definition: set.c:4406 SCIP_Bool SCIPsetIsUpdateUnreliable(SCIP_SET *set, SCIP_Real newvalue, SCIP_Real oldvalue) Definition: set.c:5592 SCIP_RETCODE SCIPsetResetParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *name) Definition: set.c:2577 SCIP_RETCODE SCIPsetSetLongintParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *name, SCIP_Longint value) Definition: set.c:2418 SCIP_Bool SCIPsetIsFeasLT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5023 SCIP_RETCODE SCIPsetGetIntParam(SCIP_SET *set, const char *name, int *value) Definition: set.c:2192 Definition: struct_dialog.h:35 SCIP_Bool SCIPsetIsSumRelLT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5518 SCIP_RETCODE SCIPsetSetPresolving(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAMSETTING paramsetting, SCIP_Bool quiet) Definition: set.c:2658 SCIP_Bool SCIPsetIsEfficacious(SCIP_SET *set, SCIP_Bool root, SCIP_Real efficacy) Definition: set.c:5407 SCIP_Bool SCIPsetIsUbBetter(SCIP_SET *set, SCIP_Real newub, SCIP_Real oldlb, SCIP_Real oldub) Definition: set.c:5389 SCIP_Bool SCIPsetIsRelLE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5454 SCIP_RETCODE SCIPsetInitprePlugins(SCIP_SET *set, BMS_BLKMEM *blkmem, SCIP_STAT *stat) Definition: set.c:4026 SCIP_READER * SCIPsetFindReader(SCIP_SET *set, const char *name) Definition: set.c:2731 Definition: struct_message.h:35 SCIP_Bool SCIPsetIsDualfeasFracIntegral(SCIP_SET *set, SCIP_Real val) Definition: set.c:5314 SCIP_Bool SCIPsetIsSumNegative(SCIP_SET *set, SCIP_Real val) Definition: set.c:4952 SCIP_Bool SCIPsetIsGE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4739 SCIP_RETCODE SCIPsetSetSeparating(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAMSETTING paramsetting, SCIP_Bool quiet) Definition: set.c:2676 SCIP_Bool SCIPsetIsRelGT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5470 Definition: struct_paramset.h:98 type definitions for global SCIP settings SCIP_Bool SCIPsetIsEQ(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4691 SCIP_RETCODE SCIPsetSetIntParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *name, int value) Definition: set.c:2366 SCIP_RETCODE SCIPsetAddBoolParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, BMS_BLKMEM *blkmem, const char *name, const char *desc, SCIP_Bool *valueptr, SCIP_Bool isadvanced, SCIP_Bool defaultvalue, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata) Definition: set.c:2017 SCIP_RETCODE SCIPsetSetDefaultIntParam(SCIP_SET *set, const char *name, int defaultvalue) Definition: set.c:2381 SCIP_Bool SCIPsetIsLE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4715 SCIP_RETCODE SCIPsetAddLongintParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, BMS_BLKMEM *blkmem, const char *name, const char *desc, SCIP_Longint *valueptr, SCIP_Bool isadvanced, SCIP_Longint defaultvalue, SCIP_Longint minvalue, SCIP_Longint maxvalue, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata) Definition: set.c:2063 type definitions for presolvers Definition: struct_sepa.h:36 SCIP_RETCODE SCIPsetSetVerbLevel(SCIP_SET *set, SCIP_VERBLEVEL verblevel) Definition: set.c:4291 SCIP_RETCODE SCIPsetExitsolPlugins(SCIP_SET *set, BMS_BLKMEM *blkmem, SCIP_STAT *stat, SCIP_Bool restart) Definition: set.c:4174 SCIP_RETCODE SCIPsetSetEmphasis(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAMEMPHASIS paramemphasis, SCIP_Bool quiet) Definition: set.c:2608 SCIP_RETCODE SCIPsetSetBarrierconvtol(SCIP_SET *set, SCIP_Real barrierconvtol) Definition: set.c:4383 void SCIPsetEnableOrDisablePluginClocks(SCIP_SET *set, SCIP_Bool enabled) Definition: set.c:518 Definition: struct_pricer.h:36 SCIP_Bool SCIPsetIsDualfeasEQ(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5190 type definitions for branching rules type definitions for problem statistics Definition: struct_conflict.h:39 SCIP_RETCODE SCIPsetExitPlugins(SCIP_SET *set, BMS_BLKMEM *blkmem, SCIP_STAT *stat) Definition: set.c:3939 SCIP_RETCODE SCIPsetResetParams(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr) Definition: set.c:2589 SCIP_Bool SCIPsetIsRelLT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5438 Definition: struct_set.h:55 SCIP_Bool SCIPsetIsDualfeasPositive(SCIP_SET *set, SCIP_Real val) Definition: set.c:5281 SCIP_RETCODE SCIPsetSetDefaultBoolParam(SCIP_SET *set, const char *name, SCIP_Bool defaultvalue) Definition: set.c:2328 SCIP_Bool SCIPsetIsFeasLE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5039 SCIP_Bool SCIPsetIsFracIntegral(SCIP_SET *set, SCIP_Real val) Definition: set.c:4813 SCIP_RETCODE SCIPsetCopyParams(SCIP_SET *sourceset, SCIP_SET *targetset, SCIP_MESSAGEHDLR *messagehdlr) Definition: set.c:783 SCIP_RETCODE SCIPsetIncludePresol(SCIP_SET *set, SCIP_PRESOL *presol) Definition: set.c:3059 type definitions for variable pricers SCIP_RETCODE SCIPsetGetRealParam(SCIP_SET *set, const char *name, SCIP_Real *value) Definition: set.c:2220 internal methods for memory buffers for temporary objects SCIP_Bool SCIPsetIsFeasPositive(SCIP_SET *set, SCIP_Real val) Definition: set.c:5098 type definitions for primal heuristics Definition: struct_cons.h:116 SCIP_RETCODE SCIPsetIncludeRelax(SCIP_SET *set, SCIP_RELAX *relax) Definition: set.c:3132 type definitions for SCIP's main datastructure SCIP_Bool SCIPsetIsSumPositive(SCIP_SET *set, SCIP_Real val) Definition: set.c:4941 SCIP_RETCODE SCIPsetSetHeuristics(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAMSETTING paramsetting, SCIP_Bool quiet) Definition: set.c:2640 SCIP_Real SCIPsetDualfeasFrac(SCIP_SET *set, SCIP_Real val) Definition: set.c:5360 SCIP_BRANCHRULE * SCIPsetFindBranchrule(SCIP_SET *set, const char *name) Definition: set.c:3602 SCIP_Bool SCIPsetIsDualfeasLT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5206 SCIP_EVENTHDLR * SCIPsetFindEventhdlr(SCIP_SET *set, const char *name) Definition: set.c:3469 SCIP_PRICER * SCIPsetFindPricer(SCIP_SET *set, const char *name) Definition: set.c:2774 SCIP_RETCODE SCIPsetChgParamFixed(SCIP_SET *set, const char *name, SCIP_Bool fixed) Definition: set.c:2262 SCIP_RETCODE SCIPsetAddStringParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, BMS_BLKMEM *blkmem, const char *name, const char *desc, char **valueptr, SCIP_Bool isadvanced, const char *defaultvalue, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata) Definition: set.c:2134 SCIP_RETCODE SCIPsetIncludeDisp(SCIP_SET *set, SCIP_DISP *disp) Definition: set.c:3652 SCIP_PRESOL * SCIPsetFindPresol(SCIP_SET *set, const char *name) Definition: set.c:3082 SCIP_RETCODE SCIPsetSetParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *name, void *value) Definition: set.c:2276 SCIP_RETCODE SCIPsetChgStringParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAM *param, const char *value) Definition: set.c:2509 SCIP_RETCODE SCIPsetGetCharParam(SCIP_SET *set, const char *name, char *value) Definition: set.c:2234 SCIP_RETCODE SCIPsetSetBoolParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *name, SCIP_Bool value) Definition: set.c:2313 type definitions for relaxators Definition: struct_heur.h:36 type definitions for conflict analysis SCIP_Bool SCIPsetIsLT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4703 Definition: struct_branch.h:68 type definitions for managing events SCIP_Bool SCIPsetIsFeasIntegral(SCIP_SET *set, SCIP_Real val) Definition: set.c:5120 Definition: struct_prop.h:36 SCIP_Bool SCIPsetIsDualfeasLE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5222 SCIP_Bool SCIPsetIsDualfeasIntegral(SCIP_SET *set, SCIP_Real val) Definition: set.c:5303 SCIP_Bool SCIPsetIsGT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4727 SCIP_RETCODE SCIPsetIncludeConflicthdlr(SCIP_SET *set, SCIP_CONFLICTHDLR *conflicthdlr) Definition: set.c:2985 void SCIPsetSetPriorityNlpi(SCIP_SET *set, SCIP_NLPI *nlpi, int priority) Definition: set.c:3805 public data structures and miscellaneous methods SCIP_RETCODE SCIPsetInitsolPlugins(SCIP_SET *set, BMS_BLKMEM *blkmem, SCIP_STAT *stat) Definition: set.c:4090 SCIP_RETCODE SCIPsetChgCharParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAM *param, char value) Definition: set.c:2471 SCIP_RETCODE SCIPsetChgRealParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAM *param, SCIP_Real value) Definition: set.c:2433 SCIP_RETCODE SCIPsetIncludeBranchrule(SCIP_SET *set, SCIP_BRANCHRULE *branchrule) Definition: set.c:3578 SCIP_RETCODE SCIPsetIncludeSepa(SCIP_SET *set, SCIP_SEPA *sepa) Definition: set.c:3206 type definitions for input file readers SCIP_RETCODE SCIPsetIncludeEventhdlr(SCIP_SET *set, SCIP_EVENTHDLR *eventhdlr) Definition: set.c:3446 SCIP_CONSHDLR * SCIPsetFindConshdlr(SCIP_SET *set, const char *name) Definition: set.c:2965 SCIP_RETCODE SCIPsetSetSubscipsOff(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_Bool quiet) Definition: set.c:2623 SCIP_RELAX * SCIPsetFindRelax(SCIP_SET *set, const char *name) Definition: set.c:3156 SCIP_Real SCIPsetDualfeasFloor(SCIP_SET *set, SCIP_Real val) Definition: set.c:5327 SCIP_Bool SCIPsetIsSumRelEQ(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5502 SCIP_RETCODE SCIPsetInitPlugins(SCIP_SET *set, BMS_BLKMEM *blkmem, SCIP_STAT *stat) Definition: set.c:3851 SCIP_Bool SCIPsetIsDualfeasZero(SCIP_SET *set, SCIP_Real val) Definition: set.c:5270 SCIP_RETCODE SCIPsetReadParams(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *filename) Definition: set.c:2547 SCIP_RETCODE SCIPsetSetRealParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *name, SCIP_Real value) Definition: set.c:2456 SCIP_RETCODE SCIPsetAddRealParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, BMS_BLKMEM *blkmem, const char *name, const char *desc, SCIP_Real *valueptr, SCIP_Bool isadvanced, SCIP_Real defaultvalue, SCIP_Real minvalue, SCIP_Real maxvalue, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata) Definition: set.c:2087 SCIP_Bool SCIPsetIsSumLE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4894 type definitions for clocks and timing issues SCIP_Bool SCIPsetIsFeasNegative(SCIP_SET *set, SCIP_Real val) Definition: set.c:5109 SCIP_Bool SCIPsetIsSumLT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4882 SCIP_RETCODE SCIPsetIncludeProp(SCIP_SET *set, SCIP_PROP *prop) Definition: set.c:3280 SCIP_RETCODE SCIPsetAddCharParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, BMS_BLKMEM *blkmem, const char *name, const char *desc, char *valueptr, SCIP_Bool isadvanced, char defaultvalue, const char *allowedvalues, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata) Definition: set.c:2111 SCIP_Bool SCIPsetExistsDialog(SCIP_SET *set, SCIP_DIALOG *dialog) Definition: set.c:3726 void SCIPsetReinsertConshdlrSepaPrio(SCIP_SET *set, SCIP_CONSHDLR *conshdlr, int oldpriority) Definition: set.c:2880 SCIP_Bool SCIPsetIsSumGE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4918 SCIP_Bool SCIPsetIsDualfeasNegative(SCIP_SET *set, SCIP_Real val) Definition: set.c:5292 SCIP_Bool SCIPsetIsDualfeasGT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5238 SCIP_RETCODE SCIPsetSetDualfeastol(SCIP_SET *set, SCIP_Real dualfeastol) Definition: set.c:4370 SCIP_RETCODE SCIPsetIncludePricer(SCIP_SET *set, SCIP_PRICER *pricer) Definition: set.c:2751 type definitions for propagators SCIP_Bool SCIPsetIsFeasGT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5055 SCIP_RETCODE SCIPsetGetLongintParam(SCIP_SET *set, const char *name, SCIP_Longint *value) Definition: set.c:2206 SCIP_RETCODE SCIPsetSetFeastol(SCIP_SET *set, SCIP_Real feastol) Definition: set.c:4310 SCIP_CONFLICTHDLR * SCIPsetFindConflicthdlr(SCIP_SET *set, const char *name) Definition: set.c:3009 Definition: struct_disp.h:35 type definitions for separators SCIP_RETCODE SCIPsetSetStringParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *name, const char *value) Definition: set.c:2532 SCIP_RETCODE SCIPsetIncludeNlpi(SCIP_SET *set, SCIP_NLPI *nlpi) Definition: set.c:3748 SCIP_Bool SCIPsetIsParamFixed(SCIP_SET *set, const char *name) Definition: set.c:2156 SCIP_RETCODE SCIPsetExitprePlugins(SCIP_SET *set, BMS_BLKMEM *blkmem, SCIP_STAT *stat) Definition: set.c:4058 SCIP_Bool SCIPsetIsFeasGE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5071 SCIP_Bool SCIPsetIsRelGE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5486 SCIP_Bool SCIPsetIsSumGT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:4906 type definitions for handling parameter settings SCIP_RETCODE SCIPsetChgBoolParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAM *param, SCIP_Bool value) Definition: set.c:2291 SCIP_Bool SCIPsetIsDualfeasGE(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5254 SCIP_RETCODE SCIPsetGetStringParam(SCIP_SET *set, const char *name, char **value) Definition: set.c:2248 SCIP_RETCODE SCIPsetSetLpfeastol(SCIP_SET *set, SCIP_Real lpfeastol, SCIP_Bool printnewvalue) Definition: set.c:4332 SCIP_RETCODE SCIPsetIncludeHeur(SCIP_SET *set, SCIP_HEUR *heur) Definition: set.c:3372 SCIP_RETCODE SCIPsetChgLongintParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAM *param, SCIP_Longint value) Definition: set.c:2395 SCIP_Bool SCIPsetIsRelEQ(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5422 SCIP_Real SCIPsetDualfeasCeil(SCIP_SET *set, SCIP_Real val) Definition: set.c:5338 SCIP_RETCODE SCIPsetIncludeConshdlr(SCIP_SET *set, SCIP_CONSHDLR *conshdlr) Definition: set.c:2824 SCIP_Bool SCIPsetIsFeasEQ(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5007 Definition: struct_relax.h:36 SCIP_Bool SCIPsetIsScalingIntegral(SCIP_SET *set, SCIP_Real val, SCIP_Real scalar) Definition: set.c:4795 SCIP_RETCODE SCIPsetCreate(SCIP_SET **set, SCIP_MESSAGEHDLR *messagehdlr, BMS_BLKMEM *blkmem, SCIP *scip) Definition: set.c:800 Definition: struct_stat.h:44 SCIP_Bool SCIPsetIsSumRelGT(SCIP_SET *set, SCIP_Real val1, SCIP_Real val2) Definition: set.c:5550 common defines and data types used in all packages of SCIP SCIP_NODESEL * SCIPsetGetNodesel(SCIP_SET *set, SCIP_STAT *stat) Definition: set.c:3540 SCIP_RETCODE SCIPsetIncludeNodesel(SCIP_SET *set, SCIP_NODESEL *nodesel) Definition: set.c:3489 SCIP_RETCODE SCIPsetChgIntParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, SCIP_PARAM *param, int value) Definition: set.c:2343 type definitions for node selectors SCIP_RETCODE SCIPsetIncludeExternalCode(SCIP_SET *set, const char *name, const char *description) Definition: set.c:3819 SCIP_RETCODE SCIPsetAddIntParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, BMS_BLKMEM *blkmem, const char *name, const char *desc, int *valueptr, SCIP_Bool isadvanced, int defaultvalue, int minvalue, int maxvalue, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata) Definition: set.c:2039 datastructures for global SCIP settings SCIP_Real SCIPsetDualfeasRound(SCIP_SET *set, SCIP_Real val) Definition: set.c:5349 Definition: struct_event.h:185 type definitions for constraints and constraint handlers SCIP_RETCODE SCIPsetSetCharParam(SCIP_SET *set, SCIP_MESSAGEHDLR *messagehdlr, const char *name, char value) Definition: set.c:2494 type definitions for displaying runtime statistics memory allocation routines Definition: struct_nlpi.h:35 |