cloud branching rule
Branching rule based on muliple optimal solutions to the current LP relaxation. See
Cloud Branching
Timo Berthold and Domenico Salvagnin
Integration of AI and OR Techniques in Constraint Programming for Combinatorial Optimization Problems, CPAIOR 2013, LNCS 7874
Preliminary version available as ZIB-Report 13-01.
Definition in file branch_cloud.c.
#include <assert.h>
#include <string.h>
#include "scip/branch_cloud.h"
#include "scip/branch_fullstrong.h"
#include "scip/branch_allfullstrong.h"
Go to the source code of this file.
Macros | |
#define | BRANCHRULE_NAME "cloud" |
#define | BRANCHRULE_DESC "branching rule that considers several alternative LP optima" |
#define | BRANCHRULE_PRIORITY 0 |
#define | BRANCHRULE_MAXDEPTH -1 |
#define | BRANCHRULE_MAXBOUNDDIST 1.0 |
#define | DEFAULT_USECLOUD TRUE |
#define | DEFAULT_USEUNION FALSE |
#define | DEFAULT_MAXPOINTS -1 |
#define | DEFAULT_MINSUCCESSRATE 0.0 |
#define | DEFAULT_MINSUCCESSUNION 0.0 |
#define | DEFAULT_MAXDEPTHUNION 65000 |
#define | DEFAULT_ONLYF2 FALSE |
Functions | |
static | SCIP_DECL_BRANCHFREE (branchFreeCloud) |
static | SCIP_DECL_BRANCHINIT (branchInitCloud) |
static | SCIP_DECL_BRANCHEXECLP (branchExeclpCloud) |
SCIP_RETCODE | SCIPincludeBranchruleCloud (SCIP *scip) |
#define BRANCHRULE_NAME "cloud" |
Definition at line 38 of file branch_cloud.c.
Referenced by SCIP_DECL_BRANCHEXECLP(), and SCIPincludeBranchruleCloud().
#define BRANCHRULE_DESC "branching rule that considers several alternative LP optima" |
Definition at line 39 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define BRANCHRULE_PRIORITY 0 |
Definition at line 40 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define BRANCHRULE_MAXDEPTH -1 |
Definition at line 41 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define BRANCHRULE_MAXBOUNDDIST 1.0 |
Definition at line 42 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define DEFAULT_USECLOUD TRUE |
should a cloud of points be used?
Definition at line 44 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define DEFAULT_USEUNION FALSE |
should the union of candidates be used?
Definition at line 45 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define DEFAULT_MAXPOINTS -1 |
maximum number of points for the cloud (-1 means no limit)
Definition at line 46 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define DEFAULT_MINSUCCESSRATE 0.0 |
minimum success rate for the cloud
Definition at line 47 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define DEFAULT_MINSUCCESSUNION 0.0 |
minimum success rate for the union
Definition at line 48 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define DEFAULT_MAXDEPTHUNION 65000 |
maximum depth for the union
Definition at line 49 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
#define DEFAULT_ONLYF2 FALSE |
should only F2 be used?
Definition at line 50 of file branch_cloud.c.
Referenced by SCIPincludeBranchruleCloud().
|
static |
destructor of branching rule to free user data (called when SCIP is exiting)
Definition at line 85 of file branch_cloud.c.
References SCIP_CALL, SCIP_OKAY, SCIP_Real, SCIPbranchruleGetData(), SCIPbranchruleSetData(), SCIPfreeBlockMemory, SCIPfreeBlockMemoryArrayNull, SCIPfreeClock(), SCIPgetClockTime(), SCIPstatistic, and SCIPstatisticMessage.
|
static |
initialization method of branching rule (called after problem was transformed)
Definition at line 127 of file branch_cloud.c.
References SCIP_CALL, SCIP_OKAY, SCIPbranchruleGetData(), and SCIPresetClock().
|
static |
branching execution method for fractional LP solutions
Definition at line 151 of file branch_cloud.c.
References BMSclearMemoryArray, BMScopyMemoryArray, BRANCHRULE_NAME, FALSE, MAX, SCIP_Bool, SCIP_BRANCHED, SCIP_CALL, SCIP_CONSADDED, SCIP_CUTOFF, SCIP_DIDNOTRUN, SCIP_LPSOLSTAT_OPTIMAL, SCIP_OKAY, SCIP_Real, SCIP_REDUCEDDOM, SCIP_VARTYPE_INTEGER, SCIPallColsInLP(), SCIPallocBlockMemoryArray, SCIPallocBufferArray, SCIPbranchruleGetData(), SCIPbranchruleGetName(), SCIPbranchVar(), SCIPceil(), SCIPchgRowLhsDive(), SCIPchgRowRhsDive(), SCIPchgVarLbDive(), SCIPchgVarObjDive(), SCIPchgVarUbDive(), SCIPcreateSol(), SCIPdebugMsg, SCIPendDive(), SCIPfloor(), SCIPfrac(), SCIPfreeBufferArray, SCIPgetCutoffbound(), SCIPgetDepth(), SCIPgetLPBranchCands(), SCIPgetLPRows(), SCIPgetLPSolstat(), SCIPgetNBinVars(), SCIPgetNIntVars(), SCIPgetNLPBranchCands(), SCIPgetNLPRows(), SCIPgetRowActivity(), SCIPgetSolOrigObj(), SCIPgetSolVal(), SCIPgetVarRedcost(), SCIPgetVarsData(), SCIPinfinity(), SCIPisExactSolve(), SCIPisFeasEQ(), SCIPisFeasIntegral(), SCIPisFeasZero(), SCIPisIntegral(), SCIPisLPSolBasic(), SCIPisLT(), SCIPisZero(), SCIPlinkLPSol(), SCIPnodeGetLowerbound(), SCIProwGetDualsol(), SCIProwGetLhs(), SCIProwGetRhs(), SCIPselectVarPseudoStrongBranching(), SCIPselectVarStrongBranching(), SCIPsolveDiveLP(), SCIPstartClock(), SCIPstartDive(), SCIPstopClock(), SCIPtrySolFree(), SCIPupdateNodeLowerbound(), SCIPvarGetName(), SCIPvarGetSol(), SCIPvarGetType(), SCIPwarningMessage(), and TRUE.