Detailed Description
C++ wrapper for branching rules.
This class defines the interface for branching rules implemented in C++.
- Instructions for implementing a branching rule
- List of available branching rules
- Corresponding C interface
Definition at line 55 of file objbranchrule.h.
C++ wrapper for branching rules. More...
#include <objbranchrule.h>
Data Fields | |
SCIP * | scip_ |
char * | scip_name_ |
char * | scip_desc_ |
const int | scip_priority_ |
const int | scip_maxdepth_ |
const SCIP_Real | scip_maxbounddist_ |
Constructor & Destructor Documentation
◆ ObjBranchrule() [1/3]
|
inline |
default constructor
- Parameters
-
scip SCIP data structure name name of branching rule desc description of branching rule priority priority of the branching rule maxdepth maximal depth level, up to which this branching rule should be used (or -1) maxbounddist maximal relative distance from current node's dual bound to primal bound compared to best node's dual bound for applying branching rule (0.0: only on current best node, 1.0: on all nodes)
Definition at line 82 of file objbranchrule.h.
References SCIP_CALL_ABORT, and SCIPduplicateMemoryArray.
◆ ObjBranchrule() [2/3]
|
inline |
copy constructor
Definition at line 105 of file objbranchrule.h.
◆ ObjBranchrule() [3/3]
|
inline |
move constructor
Definition at line 111 of file objbranchrule.h.
◆ ~ObjBranchrule()
|
inlinevirtual |
destructor
Definition at line 124 of file objbranchrule.h.
References operator=(), and SCIPfreeMemoryArray.
Member Function Documentation
◆ operator=() [1/2]
|
delete |
assignment of polymorphic classes causes slicing and is therefore disabled.
Referenced by ~ObjBranchrule().
◆ operator=() [2/2]
|
delete |
assignment of polymorphic classes causes slicing and is therefore disabled.
◆ SCIP_DECL_BRANCHFREE()
|
inlinevirtual |
destructor of branching rule to free user data (called when SCIP is exiting)
- See also
- SCIP_DECL_BRANCHFREE(x) in type_branch.h
Definition at line 142 of file objbranchrule.h.
References SCIP_OKAY.
◆ SCIP_DECL_BRANCHINIT()
|
inlinevirtual |
initialization method of branching rule (called after problem was transformed)
- See also
- SCIP_DECL_BRANCHINIT(x) in type_branch.h
Definition at line 151 of file objbranchrule.h.
References SCIP_OKAY.
◆ SCIP_DECL_BRANCHEXIT()
|
inlinevirtual |
deinitialization method of branching rule (called before transformed problem is freed)
- See also
- SCIP_DECL_BRANCHEXIT(x) in type_branch.h
Definition at line 160 of file objbranchrule.h.
References SCIP_OKAY.
◆ SCIP_DECL_BRANCHINITSOL()
|
inlinevirtual |
solving process initialization method of branching rule (called when branch and bound process is about to begin)
- See also
- SCIP_DECL_BRANCHINITSOL(x) in type_branch.h
Definition at line 169 of file objbranchrule.h.
References SCIP_OKAY.
◆ SCIP_DECL_BRANCHEXITSOL()
|
inlinevirtual |
solving process deinitialization method of branching rule (called before branch and bound process data is freed)
- See also
- SCIP_DECL_BRANCHEXITSOL(x) in type_branch.h
Definition at line 178 of file objbranchrule.h.
References SCIP_OKAY.
◆ SCIP_DECL_BRANCHEXECLP()
|
inlinevirtual |
branching execution method for fractional LP solutions
- See also
- SCIP_DECL_BRANCHEXECLP(x) in type_branch.h
Definition at line 187 of file objbranchrule.h.
References NULL, SCIP_DIDNOTRUN, and SCIP_OKAY.
◆ SCIP_DECL_BRANCHEXECEXT()
|
inlinevirtual |
branching execution method for external candidates
- See also
- SCIP_DECL_BRANCHEXECEXT(x) in type_branch.h
Definition at line 198 of file objbranchrule.h.
References NULL, SCIP_DIDNOTRUN, and SCIP_OKAY.
◆ SCIP_DECL_BRANCHEXECPS()
|
inlinevirtual |
branching execution method for not completely fixed pseudo solutions
- See also
- SCIP_DECL_BRANCHEXECPS(x) in type_branch.h
Definition at line 209 of file objbranchrule.h.
References NULL, SCIP_Bool, SCIP_DIDNOTRUN, SCIP_OKAY, SCIPfindObjBranchrule(), SCIPgetObjBranchrule(), and SCIPincludeObjBranchrule().
Field Documentation
◆ scip_
SCIP* scip::ObjBranchrule::scip_ |
SCIP data structure
Definition at line 61 of file objbranchrule.h.
◆ scip_name_
char* scip::ObjBranchrule::scip_name_ |
name of the branching rule
Definition at line 64 of file objbranchrule.h.
Referenced by SCIPincludeObjBranchrule().
◆ scip_desc_
char* scip::ObjBranchrule::scip_desc_ |
description of the branching rule
Definition at line 67 of file objbranchrule.h.
Referenced by SCIPincludeObjBranchrule().
◆ scip_priority_
const int scip::ObjBranchrule::scip_priority_ |
default priority of the branching rule
Definition at line 70 of file objbranchrule.h.
Referenced by SCIPincludeObjBranchrule().
◆ scip_maxdepth_
const int scip::ObjBranchrule::scip_maxdepth_ |
default maximal depth for applying the branching rule
Definition at line 73 of file objbranchrule.h.
Referenced by SCIPincludeObjBranchrule().
◆ scip_maxbounddist_
const SCIP_Real scip::ObjBranchrule::scip_maxbounddist_ |
default maximal relative distance from current node's dual bound to primal bound compared to best node's dual bound for applying branching rule (0.0: only on current best node, 1.0: on all nodes)
Definition at line 79 of file objbranchrule.h.
Referenced by SCIPincludeObjBranchrule().