scip_branch.h
Go to the documentation of this file.
29 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
74 * @note method has all branching rule callbacks as arguments and is thus changed every time a new
75 * callback is added in future releases; consider using SCIPincludeBranchruleBasic() and setter functions
84 int maxdepth, /**< maximal depth level, up to which this branching rule should be used (or -1) */
85 SCIP_Real maxbounddist, /**< maximal relative distance from current node's dual bound to primal bound
88 SCIP_DECL_BRANCHCOPY ((*branchcopy)), /**< copy method of branching rule or NULL if you don't want to copy your plugin into sub-SCIPs */
92 SCIP_DECL_BRANCHINITSOL((*branchinitsol)),/**< solving process initialization method of branching rule */
93 SCIP_DECL_BRANCHEXITSOL((*branchexitsol)),/**< solving process deinitialization method of branching rule */
94 SCIP_DECL_BRANCHEXECLP((*branchexeclp)), /**< branching execution method for fractional LP solutions */
95 SCIP_DECL_BRANCHEXECEXT((*branchexecext)),/**< branching execution method for external candidates */
96 SCIP_DECL_BRANCHEXECPS((*branchexecps)), /**< branching execution method for not completely fixed pseudo solutions */
100 /** creates a branching rule and includes it in SCIP. All non-fundamental (or optional) callbacks will be set to NULL.
101 * Optional callbacks can be set via specific setter functions, see SCIPsetBranchruleInit(), SCIPsetBranchruleExit(),
102 * SCIPsetBranchruleCopy(), SCIPsetBranchruleFree(), SCIPsetBranchruleInitsol(), SCIPsetBranchruleExitsol(),
105 * @note if you want to set all callbacks with a single method call, consider using SCIPincludeBranchrule() instead
114 int maxdepth, /**< maximal depth level, up to which this branching rule should be used (or -1) */
115 SCIP_Real maxbounddist, /**< maximal relative distance from current node's dual bound to primal bound
126 SCIP_DECL_BRANCHCOPY ((*branchcopy)) /**< copy method of branching rule or NULL if you don't want to copy your plugin into sub-SCIPs */
158 SCIP_DECL_BRANCHINITSOL((*branchinitsol)) /**< solving process initialization method of branching rule */
166 SCIP_DECL_BRANCHEXITSOL((*branchexitsol)) /**< solving process deinitialization method of branching rule */
174 SCIP_DECL_BRANCHEXECLP((*branchexeclp)) /**< branching execution method for fractional LP solutions */
182 SCIP_DECL_BRANCHEXECEXT((*branchexecext)) /**< branching execution method for external candidates */
190 SCIP_DECL_BRANCHEXECPS((*branchexecps)) /**< branching execution method for not completely fixed pseudo solutions */
220 /** sets maximal depth level, up to which this branching rule should be used (-1 for no limit) */
228 /** sets maximal relative distance from current node's dual bound to primal bound for applying branching rule */
243 /** gets branching candidates for LP solution branching (fractional variables) along with solution values,
244 * fractionalities, and number of branching candidates; The number of branching candidates does NOT
245 * account for fractional implicit integer variables which should not be used for branching decisions.
247 * Fractional implicit integer variables are stored at the positions *nlpcands to *nlpcands + *nfracimplvars - 1
249 * branching rules should always select the branching candidate among the first npriolpcands of the candidate
252 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
264 SCIP_Real** lpcandssol, /**< pointer to store the array of LP candidate solution values, or NULL */
265 SCIP_Real** lpcandsfrac, /**< pointer to store the array of LP candidate fractionalities, or NULL */
267 int* npriolpcands, /**< pointer to store the number of candidates with maximal priority, or NULL */
268 int* nfracimplvars /**< pointer to store the number of fractional implicit integer variables, or NULL */
271 /** gets number of branching candidates for LP solution branching (number of fractional variables)
273 * @return the number of branching candidates for LP solution branching (number of fractional variables).
299 /** gets external branching candidates along with solution values, scores, and number of branching candidates;
301 * branching rules should always select the branching candidate among the first nprioexterncands of the candidate
304 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
312 * @note Candidate variables with maximal priority are ordered: binaries first, then integers, implicit integers and
318 SCIP_VAR*** externcands, /**< pointer to store the array of extern branching candidates, or NULL */
319 SCIP_Real** externcandssol, /**< pointer to store the array of extern candidate solution values, or NULL */
320 SCIP_Real** externcandsscore, /**< pointer to store the array of extern candidate scores, or NULL */
322 int* nprioexterncands, /**< pointer to store the number of candidates with maximal priority, or NULL */
323 int* nprioexternbins, /**< pointer to store the number of binary candidates with maximal priority, or NULL */
324 int* nprioexternints, /**< pointer to store the number of integer candidates with maximal priority, or NULL */
325 int* nprioexternimpls /**< pointer to store the number of implicit integer candidates with maximal priority,
387 * @return the number of implicit integer external branching candidates with maximal branch priority.
413 /** insert variable, its score and its solution value into the external branching candidate storage
414 * the relative difference of the current lower and upper bounds of a continuous variable must be at least epsilon
416 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
444 /** checks whether the given variable is contained in the candidate storage for external branching
446 * @return whether the given variable is contained in the candidate storage for external branching.
459 /** gets branching candidates for pseudo solution branching (non-fixed variables) along with the number of candidates
461 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
473 SCIP_VAR*** pseudocands, /**< pointer to store the array of pseudo branching candidates, or NULL */
475 int* npriopseudocands /**< pointer to store the number of candidates with maximal priority, or NULL */
493 /** gets number of branching candidates with maximal branch priority for pseudo solution branching
495 * @return the number of branching candidates with maximal branch priority for pseudo solution branching.
508 /** gets number of binary branching candidates with maximal branch priority for pseudo solution branching
510 * @return the number of binary branching candidates with maximal branch priority for pseudo solution branching.
522 /** gets number of integer branching candidates with maximal branch priority for pseudo solution branching
524 * @return the number of integer branching candidates with maximal branch priority for pseudo solution branching.
536 /** gets number of implicit integer branching candidates with maximal branch priority for pseudo solution branching
538 * @return the number of implicit integer branching candidates with maximal branch priority for pseudo solution branching.
567 /** calculates the branching score out of the gain predictions for a branching with arbitrary many children
569 * @return the branching score out of the gain predictions for a branching with arbitrary many children.
602 /** calculates the node selection priority for moving the given variable's LP value to the given target value;
605 * @return the node selection priority for moving the given variable's LP value to the given target value.
616 SCIP_BRANCHDIR branchdir, /**< type of branching that was performed: upwards, downwards, or fixed;
622 /** calculates an estimate for the objective of the best feasible solution contained in the subtree after applying the given
625 * @return the estimate for the objective of the best feasible solution contained in the subtree after applying the given
642 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
655 SCIP_Real estimate /**< estimate for (transformed) objective value of best feasible solution in subtree */
667 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
679 SCIP_NODE** downchild, /**< pointer to return the left child with variable rounded down, or NULL */
684 /** branches a variable x using a given domain hole; two child nodes (x <= left, x >= right) are created
686 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
705 * for continuous variables with relative domain width larger epsilon, x' must not be one of the bounds;
712 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
725 SCIP_NODE** downchild, /**< pointer to return the left child with variable rounded down, or NULL */
732 * Branches on variable x such that up to n/2 children are created on each side of the usual branching value.
734 * The parameters minwidth and widthfactor determine the domain width of the branching variable in the child nodes.
735 * If n is odd, one child with domain width 'width' and having the branching value in the middle is created.
736 * Otherwise, two children with domain width 'width' and being left and right of the branching value are created.
737 * Next further nodes to the left and right are created, where width is multiplied by widthfactor with increasing distance
739 * The initial width is calculated such that n/2 nodes are created to the left and to the right of the branching value.
740 * If this value is below minwidth, the initial width is set to minwidth, which may result in creating less than n nodes.
742 * Giving a large value for widthfactor results in creating children with small domain when close to the branching value
743 * and large domain when closer to the current variable bounds. That is, setting widthfactor to a very large value and n to 3
744 * results in a ternary branching where the branching variable is mostly fixed in the middle child.
745 * Setting widthfactor to 1.0 results in children where the branching variable always has the same domain width
748 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
763 SCIP_Real widthfactor, /**< multiplier for children domain width with increasing distance from val, must be >= 1.0 */
767 /** calls branching rules to branch on an LP solution; if no fractional variables exist, the result is SCIP_DIDNOTRUN;
768 * if the branch priority of an unfixed variable is larger than the maximal branch priority of the fractional
769 * variables, pseudo solution branching is applied on the unfixed variables with maximal branch priority
771 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
785 /** calls branching rules to branch on a external candidates; if no such candidates exist, the result is SCIP_DIDNOTRUN
787 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
801 /** calls branching rules to branch on a pseudo solution; if no unfixed variables exist, the result is SCIP_DIDNOTRUN
803 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
SCIP_RETCODE SCIPgetLPBranchCands(SCIP *scip, SCIP_VAR ***lpcands, SCIP_Real **lpcandssol, SCIP_Real **lpcandsfrac, int *nlpcands, int *npriolpcands, int *nfracimplvars)
Definition: scip_branch.c:384
int SCIPgetNPrioPseudoBranchBins(SCIP *scip)
Definition: scip_branch.c:784
SCIP_RETCODE SCIPincludeBranchrule(SCIP *scip, const char *name, const char *desc, int priority, int maxdepth, SCIP_Real maxbounddist, SCIP_DECL_BRANCHCOPY((*branchcopy)), SCIP_DECL_BRANCHFREE((*branchfree)), SCIP_DECL_BRANCHINIT((*branchinit)), SCIP_DECL_BRANCHEXIT((*branchexit)), SCIP_DECL_BRANCHINITSOL((*branchinitsol)), SCIP_DECL_BRANCHEXITSOL((*branchexitsol)), SCIP_DECL_BRANCHEXECLP((*branchexeclp)), SCIP_DECL_BRANCHEXECEXT((*branchexecext)), SCIP_DECL_BRANCHEXECPS((*branchexecps)), SCIP_BRANCHRULEDATA *branchruledata)
Definition: scip_branch.c:57
SCIP_RETCODE SCIPsetBranchruleExecPs(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHEXECPS((*branchexecps)))
Definition: scip_branch.c:270
internal methods for branch and bound tree
Definition: struct_scip.h:58
SCIP_RETCODE SCIPbranchVarHole(SCIP *scip, SCIP_VAR *var, SCIP_Real left, SCIP_Real right, SCIP_NODE **downchild, SCIP_NODE **upchild)
Definition: scip_branch.c:1033
int SCIPgetNPrioPseudoBranchImpls(SCIP *scip)
Definition: scip_branch.c:820
Definition: struct_var.h:198
SCIP_RETCODE SCIPsetBranchruleInitsol(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHINITSOL((*branchinitsol)))
Definition: scip_branch.c:206
SCIP_Real SCIPgetBranchingPoint(SCIP *scip, SCIP_VAR *var, SCIP_Real suggestion)
Definition: scip_branch.c:886
SCIP_RETCODE SCIPsetBranchruleExit(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHEXIT((*branchexit)))
Definition: scip_branch.c:190
SCIP_RETCODE SCIPsetBranchruleFree(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHFREE((*branchfree)))
Definition: scip_branch.c:158
SCIP_RETCODE SCIPbranchVarValNary(SCIP *scip, SCIP_VAR *var, SCIP_Real val, int n, SCIP_Real minwidth, SCIP_Real widthfactor, int *nchildren)
Definition: scip_branch.c:1131
SCIP_RETCODE SCIPsetBranchruleCopy(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHCOPY((*branchcopy)))
Definition: scip_branch.c:142
SCIP_Real SCIPgetBranchScoreMultiple(SCIP *scip, SCIP_VAR *var, int nchildren, SCIP_Real *gains)
Definition: scip_branch.c:861
SCIP_BRANCHRULE * SCIPfindBranchrule(SCIP *scip, const char *name)
Definition: scip_branch.c:286
int SCIPgetNPrioPseudoBranchInts(SCIP *scip)
Definition: scip_branch.c:802
type definitions for return codes for SCIP methods
SCIP_RETCODE SCIPincludeBranchruleBasic(SCIP *scip, SCIP_BRANCHRULE **branchruleptr, const char *name, const char *desc, int priority, int maxdepth, SCIP_Real maxbounddist, SCIP_BRANCHRULEDATA *branchruledata)
Definition: scip_branch.c:105
SCIP_RETCODE SCIPgetExternBranchCands(SCIP *scip, SCIP_VAR ***externcands, SCIP_Real **externcandssol, SCIP_Real **externcandsscore, int *nexterncands, int *nprioexterncands, int *nprioexternbins, int *nprioexternints, int *nprioexternimpls)
Definition: scip_branch.c:500
int SCIPgetNPrioExternBranchImpls(SCIP *scip)
Definition: scip_branch.c:612
type definitions for branching rules
Definition: struct_tree.h:133
SCIP_RETCODE SCIPsetBranchruleExecLp(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHEXECLP((*branchexeclp)))
Definition: scip_branch.c:238
SCIP_Real SCIPgetBranchScore(SCIP *scip, SCIP_VAR *var, SCIP_Real downgain, SCIP_Real upgain)
Definition: scip_branch.c:838
SCIP_RETCODE SCIPbranchVar(SCIP *scip, SCIP_VAR *var, SCIP_NODE **downchild, SCIP_NODE **eqchild, SCIP_NODE **upchild)
Definition: scip_branch.c:992
type definitions for SCIP's main datastructure
SCIP_RETCODE SCIPsetBranchruleMaxbounddist(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_Real maxbounddist)
Definition: scip_branch.c:353
internal miscellaneous methods
int SCIPgetNPrioExternBranchCands(SCIP *scip)
Definition: scip_branch.c:552
SCIP_RETCODE SCIPsetBranchrulePriority(SCIP *scip, SCIP_BRANCHRULE *branchrule, int priority)
Definition: scip_branch.c:323
SCIP_RETCODE SCIPcreateChild(SCIP *scip, SCIP_NODE **node, SCIP_Real nodeselprio, SCIP_Real estimate)
Definition: scip_branch.c:959
internal methods for global SCIP settings
SCIP main data structure.
SCIP_RETCODE SCIPbranchVarVal(SCIP *scip, SCIP_VAR *var, SCIP_Real val, SCIP_NODE **downchild, SCIP_NODE **eqchild, SCIP_NODE **upchild)
Definition: scip_branch.c:1068
type definitions for problem variables
SCIP_RETCODE SCIPgetPseudoBranchCands(SCIP *scip, SCIP_VAR ***pseudocands, int *npseudocands, int *npriopseudocands)
Definition: scip_branch.c:722
int SCIPgetNPrioExternBranchBins(SCIP *scip)
Definition: scip_branch.c:572
int SCIPgetNPrioExternBranchInts(SCIP *scip)
Definition: scip_branch.c:592
Definition: struct_branch.h:69
internal methods for problem variables
int SCIPgetNPrioExternBranchConts(SCIP *scip)
Definition: scip_branch.c:632
int SCIPgetNPrioPseudoBranchCands(SCIP *scip)
Definition: scip_branch.c:766
methods for debugging
SCIP_RETCODE SCIPsetBranchruleExitsol(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHEXITSOL((*branchexitsol)))
Definition: scip_branch.c:222
SCIP_RETCODE SCIPsetBranchruleExecExt(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHEXECEXT((*branchexecext)))
Definition: scip_branch.c:254
SCIP_Real SCIPcalcNodeselPriority(SCIP *scip, SCIP_VAR *var, SCIP_BRANCHDIR branchdir, SCIP_Real targetvalue)
Definition: scip_branch.c:909
SCIP_RETCODE SCIPsetBranchruleMaxdepth(SCIP *scip, SCIP_BRANCHRULE *branchrule, int maxdepth)
Definition: scip_branch.c:338
SCIP_RETCODE SCIPaddExternBranchCand(SCIP *scip, SCIP_VAR *var, SCIP_Real score, SCIP_Real solval)
Definition: scip_branch.c:654
type definitions for branch and bound tree
datastructures for problem statistics
SCIP_Real SCIPcalcChildEstimate(SCIP *scip, SCIP_VAR *var, SCIP_Real targetvalue)
Definition: scip_branch.c:936
SCIP_RETCODE SCIPbranchPseudo(SCIP *scip, SCIP_RESULT *result)
Definition: scip_branch.c:1224
internal methods for main solving loop and node processing
result codes for SCIP callback methods
type definitions for branching and inference history
SCIP_RETCODE SCIPsetBranchruleInit(SCIP *scip, SCIP_BRANCHRULE *branchrule, SCIP_DECL_BRANCHINIT((*branchinit)))
Definition: scip_branch.c:174
internal methods for constraints and constraint handlers
SCIP_RETCODE SCIPbranchLP(SCIP *scip, SCIP_RESULT *result)
Definition: scip_branch.c:1176
SCIP_RETCODE SCIPbranchExtern(SCIP *scip, SCIP_RESULT *result)
Definition: scip_branch.c:1200
common defines and data types used in all packages of SCIP
Definition: objbenders.h:33
SCIP_Bool SCIPcontainsExternBranchCand(SCIP *scip, SCIP_VAR *var)
Definition: scip_branch.c:698