All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pub_var.h
Go to the documentation of this file.
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
74 /** compares the index of two variables, only active or negated variables are allowed, if a variable
75 * is negated then the index of the corresponding active variable is taken, returns -1 if first is
85 /** comparison method for sorting active and negated variables by non-decreasing index, active and negated
91 /** compares the index of two variables, returns -1 if first is smaller than, and +1 if first is greater than second
136 /** gets corresponding active, fixed, or multi-aggregated problem variables of binary variables and
146 /** gets corresponding active, fixed, or multi-aggregated problem variable of a binary variable and
155 /** transforms given variable, boundtype and bound to the corresponding active, fixed, or multi-aggregated variable
165 /** transforms given variable and domain hole to the corresponding active, fixed, or multi-aggregated variable
175 /** retransforms given variable, scalar and constant to the corresponding original variable, scalar
176 * and constant, if possible; if the retransformation is impossible, NULL is returned as variable
185 /** returns whether the given variable is the direct counterpart of an original problem variable */
191 /** returns the number of times, a bound of the variable was changed in given direction due to branching */
198 /** returns the number of times, a bound of the variable was changed in given direction due to branching
230 /** returns the number of cutoffs branching on this variable in given direction produced in the current run */
237 /** returns the average depth of bound changes in given direction due to branching on the variable */
244 /** returns the average depth of bound changes in given direction due to branching on the variable
253 /** returns whether there is an implication x == varfixing -> y <= b or y >= b in the implication graph;
254 * implications that are represented as cliques in the clique table are not regarded (use SCIPvarsHaveCommonClique());
260 SCIP_Bool varfixing, /**< FALSE if y should be searched in implications for x == 0, TRUE for x == 1 */
265 /** returns whether there is an implication x == varfixing -> y == implvarfixing in the implication graph;
266 * implications that are represented as cliques in the clique table are not regarded (use SCIPvarsHaveCommonClique());
272 SCIP_Bool varfixing, /**< FALSE if y should be searched in implications for x == 0, TRUE for x == 1 */
280 * if regardimplics is TRUE, both the cliques and the implications of the implication graph are regarded
291 /** gets corresponding objective value of active, fixed, or multi-aggregated problem variable of given variable
353 SCIP_DECL_VARTRANS ((*vartrans)) /**< creates transformed user data by transforming original user data */
436 * method can only be called before the variable is added to the problem by SCIPaddVar() or SCIPaddPricedVar()
509 /** gets number n of aggregation variables of a multi aggregated variable x = a0*y0 + ... + a(n-1)*y(n-1) + c */
515 /** gets vector of aggregation variables y of a multi aggregated variable x = a0*y0 + ... + a(n-1)*y(n-1) + c */
521 /** gets vector of aggregation scalars a of a multi aggregated variable x = a0*y0 + ... + a(n-1)*y(n-1) + c */
527 /** gets aggregation constant c of a multi aggregated variable x = a0*y0 + ... + a(n-1)*y(n-1) + c */
557 /** gets the unchanged objective function value of variable (ignoring temproray changes performed in probing mode) */
563 /** gets original lower bound of original problem variable (i.e. the bound set in problem creation) */
569 /** gets original upper bound of original problem variable (i.e. the bound set in problem creation) */
641 /** gets type (lower or upper) of best bound of variable with respect to the objective function */
647 /** gets type (lower or upper) of worst bound of variable with respect to the objective function */
665 /** gets the branch factor of the variable; this value can be used in the branching methods to scale the score
666 * values of the variables; higher factor leads to a higher probability that this variable is chosen for branching
673 /** gets the branch priority of the variable; variables with higher priority should always be preferred to variables
693 /** gets array with bounding variables z_i in variable lower bounds x >= b_i*z_i + d_i of given variable x;
694 * the variable bounds are sorted by increasing variable index of the bounding variable z_i (see SCIPvarGetIndex())
701 /** gets array with bounding coefficients b_i in variable lower bounds x >= b_i*z_i + d_i of given variable x */
707 /** gets array with bounding constants d_i in variable lower bounds x >= b_i*z_i + d_i of given variable x */
719 /** gets array with bounding variables z_i in variable upper bounds x <= b_i*z_i + d_i of given variable x;
720 * the variable bounds are sorted by increasing variable index of the bounding variable z_i (see SCIPvarGetIndex())
727 /** gets array with bounding coefficients b_i in variable upper bounds x <= b_i*z_i + d_i of given variable x */
733 /** gets array with bounding constants d_i in variable upper bounds x <= b_i*z_i + d_i of given variable x */
739 /** gets number of implications y <= b or y >= b for x == 0 or x == 1 of given active problem variable x,
748 /** gets array with implication variables y of implications y <= b or y >= b for x == 0 or x == 1 of given active
750 * the implications are sorted such that implications with binary implied variables precede the ones with non-binary
751 * implied variables, and as a second criteria, the implied variables are sorted by increasing variable index
760 /** gets array with implication types of implications y <= b or y >= b for x == 0 or x == 1 of given active problem
770 /** gets array with implication bounds b of implications y <= b or y >= b for x == 0 or x == 1 of given active problem
779 /** Gets array with unique ids of implications y <= b or y >= b for x == 0 or x == 1 of given active problem variable x,
781 * If an implication is a shortcut, i.e., it was added as part of the transitive closure of another implication,
850 /* In optimized mode, the function calls are overwritten by defines to reduce the number of function calls and
863 || ((var)->varstatus == SCIP_VARSTATUS_NEGATED && (var)->negatedvar->varstatus == SCIP_VARSTATUS_ORIGINAL))
865 && ((var)->varstatus != SCIP_VARSTATUS_NEGATED || (var)->negatedvar->varstatus != SCIP_VARSTATUS_ORIGINAL))
869 ((var)->vartype != SCIP_VARTYPE_CONTINUOUS && MAX((var)->glbdom.lb, (var)->lazylb) >= 0.0 && MIN((var)->glbdom.ub, (var)->lazyub) <= 1.0))
882 #define SCIPvarIsInLP(var) ((var)->varstatus == SCIP_VARSTATUS_COLUMN && SCIPcolIsInLP((var)->data.col))
907 #define SCIPvarGetBestBoundGlobal(var) ((var)->obj >= 0.0 ? (var)->glbdom.lb : (var)->glbdom.ub)
908 #define SCIPvarGetWorstBoundGlobal(var) ((var)->obj >= 0.0 ? (var)->glbdom.ub : (var)->glbdom.lb)
913 #define SCIPvarGetWorstBoundLocal(var) ((var)->obj >= 0.0 ? (var)->locdom.ub : (var)->locdom.lb)
914 #define SCIPvarGetBestBoundType(var) ((var)->obj >= 0.0 ? SCIP_BOUNDTYPE_LOWER : SCIP_BOUNDTYPE_UPPER)
915 #define SCIPvarGetWorstBoundType(var) ((var)->obj >= 0.0 ? SCIP_BOUNDTYPE_UPPER : SCIP_BOUNDTYPE_LOWER)
936 #define SCIPvarGetLPSol(var) ((var)->varstatus == SCIP_VARSTATUS_COLUMN ? SCIPcolGetPrimsol((var)->data.col) : SCIPvarGetLPSol_rec(var))
937 #define SCIPvarGetNLPSol(var) (((var)->varstatus == SCIP_VARSTATUS_COLUMN || ((var)->varstatus == SCIP_VARSTATUS_LOOSE)) ? (var)->nlpsol : SCIPvarGetNLPSol_rec(var))
971 /** returns the solution of the variable in the last root node's relaxation, if the root relaxation is not yet
979 /** returns the best solution (w.r.t. root reduced cost propagation) of the variable in the root node's relaxation, if
987 /** returns the best reduced costs (w.r.t. root reduced cost propagation) of the variable in the root node's relaxation,
988 * if the root relaxation is not yet completely solved, or the variable was no column of the root LP, SCIP_INVALID is
996 /** returns the best objective value (w.r.t. root reduced cost propagation) of the root LP which belongs the root
997 * reduced cost which is accessible via SCIPvarGetRootRedcost() or the variable was no column of the root LP,
1005 /** set the given solution as the best root solution w.r.t. root reduced cost propagation in the variables */
1014 /** returns a weighted average solution value of the variable in all feasible primal solutions found so far */
1020 /** returns the bound change information for the last lower bound change on given active problem variable before or
1031 /** returns the bound change information for the last upper bound change on given active problem variable before or
1042 /** returns the bound change information for the last lower or upper bound change on given active problem variable
1054 /** returns lower bound of variable directly before or after the bound change given by the bound change index
1064 /** returns upper bound of variable directly before or after the bound change given by the bound change index
1074 /** returns lower or upper bound of variable directly before or after the bound change given by the bound change index
1085 /** returns whether the binary variable was fixed at the time given by the bound change index */
1093 /** returns the last bound change index, at which the bounds of the given variable were tightened */
1109 * returns FALSE, if the first variable is not fixed, and returns TRUE, if the first variable is fixed, but the
1118 /** returns whether first bound change index belongs to an earlier applied bound change than second one;
1119 * if a bound change index is NULL, the bound change index represents the current time, i.e. the time after the
1128 /** returns whether first bound change index belongs to an earlier applied bound change than second one */
1153 /** returns whether the bound change information belongs to a branching decision or a deduction */
1195 /** returns inference propagator of given bound change information, or NULL if no propagator was responsible */
1219 /** returns whether the bound change has an inference reason (constraint or propagator), that can be resolved */
1225 /** for two bound change informations belonging to the same variable and bound, returns whether the first bound change
1258 /** returns whether the bound change is redundant due to a more global bound that is at least as strong */
1297 /* In optimized mode, the function calls are overwritten by defines to reduce the number of function calls and
1302 ((idx1)->depth < (idx2)->depth || ((idx1)->depth == (idx2)->depth && (idx1)->pos < (idx2)->pos))
1317 #define SCIPbdchginfoGetInferBoundtype(bdchginfo) (SCIP_BOUNDTYPE)((bdchginfo)->inferboundtype)
1321 || ((bdchginfo)->boundchgtype == SCIP_BOUNDCHGTYPE_PROPINFER && (bdchginfo)->inferencedata.reason.prop != NULL))
1322 #define SCIPbdchginfoIsTighter(bdchginfo1,bdchginfo2) ((bdchginfo1)->boundtype == SCIP_BOUNDTYPE_LOWER \
1323 ? (bdchginfo1)->newbound > bdchginfo2->newbound : (bdchginfo1)->newbound < bdchginfo2->newbound)
1329 #define SCIPdomchgGetNBoundchgs(domchg) ((domchg) != NULL ? (domchg)->domchgbound.nboundchgs : 0)
SCIP_VAR ** SCIPvarGetImplVars(SCIP_VAR *var, SCIP_Bool varfixing) void SCIPvarSetTransData(SCIP_VAR *var, SCIP_DECL_VARTRANS((*vartrans))) SCIP_VAR * SCIPvarGetTransVar(SCIP_VAR *var) SCIP_Real SCIPvarGetMultaggrConstant(SCIP_VAR *var) SCIP_VAR * SCIPvarGetNegationVar(SCIP_VAR *var) int SCIPvarGetNBdchgInfosUb(SCIP_VAR *var) SCIP_Real SCIPvarGetAvgBranchdepthCurrentRun(SCIP_VAR *var, SCIP_BRANCHDIR dir) SCIP_BDCHGIDX * SCIPbdchginfoGetIdx(SCIP_BDCHGINFO *bdchginfo) const char * SCIPvarGetName(SCIP_VAR *var) SCIP_BDCHGINFO * SCIPvarGetUbchgInfo(SCIP_VAR *var, SCIP_BDCHGIDX *bdchgidx, SCIP_Bool after) SCIP_PROP * SCIPbdchginfoGetInferProp(SCIP_BDCHGINFO *bdchginfo) SCIP_BOUNDCHGTYPE SCIPbdchginfoGetChgtype(SCIP_BDCHGINFO *bdchginfo) void SCIPvarMarkDeletable(SCIP_VAR *var) type definitions for miscellaneous datastructures type definitions for implications, variable bounds, and cliques void SCIPvarsGetProbvar(SCIP_VAR **vars, int nvars) SCIP_RETCODE SCIPvarGetOrigvarSum(SCIP_VAR **var, SCIP_Real *scalar, SCIP_Real *constant) SCIP_BDCHGINFO * SCIPvarGetLbchgInfo(SCIP_VAR *var, SCIP_BDCHGIDX *bdchgidx, SCIP_Bool after) int SCIPbdchginfoGetDepth(SCIP_BDCHGINFO *bdchginfo) SCIP_Bool SCIPvarIsBinary(SCIP_VAR *var) SCIP_Bool SCIPvarMayRoundDown(SCIP_VAR *var) SCIP_Real SCIPvarGetSol(SCIP_VAR *var, SCIP_Bool getlpval) SCIP_Real SCIPholelistGetLeft(SCIP_HOLELIST *holelist) SCIP_Real SCIPvarGetBestRootLPObjval(SCIP_VAR *var) SCIP_CLIQUE ** SCIPvarGetCliques(SCIP_VAR *var, SCIP_Bool varfixing) SCIP_BDCHGINFO * SCIPvarGetBdchgInfo(SCIP_VAR *var, SCIP_BOUNDTYPE boundtype, SCIP_BDCHGIDX *bdchgidx, SCIP_Bool after) SCIP_Real SCIPvarGetLbLazy(SCIP_VAR *var) SCIP_RETCODE SCIPvarSetRemovable(SCIP_VAR *var, SCIP_Bool removable) SCIP_DECL_HASHKEYEQ(SCIPvarIsHashkeyEq) SCIP_Real SCIPvarGetBdAtIndex(SCIP_VAR *var, SCIP_BOUNDTYPE boundtype, SCIP_BDCHGIDX *bdchgidx, SCIP_Bool after) SCIP_Real SCIPvarGetLbLocal(SCIP_VAR *var) SCIP_Real * SCIPvarGetVubConstants(SCIP_VAR *var) SCIP_Real SCIPvarGetPseudoSol(SCIP_VAR *var) SCIP_VAR ** SCIPvarGetVlbVars(SCIP_VAR *var) SCIP_Real SCIPvarGetAvgSol(SCIP_VAR *var) SCIP_HOLELIST * SCIPvarGetHolelistLocal(SCIP_VAR *var) SCIP_Longint SCIPvarGetNBranchingsCurrentRun(SCIP_VAR *var, SCIP_BRANCHDIR dir) SCIP_Real SCIPvarGetUbGlobal(SCIP_VAR *var) SCIP_Bool SCIPvarHasBinaryImplic(SCIP_VAR *var, SCIP_Bool varfixing, SCIP_VAR *implvar, SCIP_Bool implvarfixing) SCIP_HOLELIST * SCIPvarGetHolelistOriginal(SCIP_VAR *var) int SCIPvarGetNVubs(SCIP_VAR *var) SCIP_RETCODE SCIPvarGetAggregatedObj(SCIP_VAR *var, SCIP_Real *aggrobj) SCIP_BOUNDTYPE SCIPvarGetBestBoundType(SCIP_VAR *var) SCIP_Real SCIPbdchginfoGetNewbound(SCIP_BDCHGINFO *bdchginfo) SCIP_RETCODE SCIPvarGetProbvarBound(SCIP_VAR **var, SCIP_Real *bound, SCIP_BOUNDTYPE *boundtype) SCIP_HOLELIST * SCIPvarGetHolelistGlobal(SCIP_VAR *var) SCIP_Bool SCIPbdchgidxIsEarlier(SCIP_BDCHGIDX *bdchgidx1, SCIP_BDCHGIDX *bdchgidx2) SCIP_VAR * SCIPboundchgGetVar(SCIP_BOUNDCHG *boundchg) SCIP_DECL_HASHKEYVAL(SCIPvarGetHashkeyVal) int SCIPdomchgGetNBoundchgs(SCIP_DOMCHG *domchg) SCIP_Real SCIPholelistGetRight(SCIP_HOLELIST *holelist) void SCIPvarSetBestRootSol(SCIP_VAR *var, SCIP_Real rootsol, SCIP_Real rootredcost, SCIP_Real rootlpobjval) SCIP_Bool SCIPvarHasImplic(SCIP_VAR *var, SCIP_Bool varfixing, SCIP_VAR *implvar, SCIP_BOUNDTYPE impltype) SCIP_Real SCIPvarGetLbAtIndex(SCIP_VAR *var, SCIP_BDCHGIDX *bdchgidx, SCIP_Bool after) type definitions for return codes for SCIP methods SCIP_Real SCIPvarGetObj(SCIP_VAR *var) SCIP_Bool SCIPvarIsInLP(SCIP_VAR *var) int SCIPbdchginfoGetPos(SCIP_BDCHGINFO *bdchginfo) SCIP_BDCHGINFO * SCIPvarGetBdchgInfoLb(SCIP_VAR *var, int pos) SCIP_Real SCIPvarGetBranchFactor(SCIP_VAR *var) int SCIPvarCompare(SCIP_VAR *var1, SCIP_VAR *var2) SCIP_Real SCIPvarGetAggrConstant(SCIP_VAR *var) int SCIPvarGetLastBdchgDepth(SCIP_VAR *var) void SCIPvarSetDelorigData(SCIP_VAR *var, SCIP_DECL_VARDELORIG((*vardelorig))) SCIP_VARSTATUS SCIPvarGetStatus(SCIP_VAR *var) SCIP_BOUNDCHG * SCIPdomchgGetBoundchg(SCIP_DOMCHG *domchg, int pos) SCIP_Bool SCIPvarIsIntegral(SCIP_VAR *var) SCIP_Real SCIPvarGetRootSol(SCIP_VAR *var) SCIP_VAR * SCIPbdchginfoGetInferVar(SCIP_BDCHGINFO *bdchginfo) SCIP_Real SCIPvarGetCutoffSumCurrentRun(SCIP_VAR *var, SCIP_BRANCHDIR dir) SCIP_BOUNDTYPE SCIPbdchginfoGetBoundtype(SCIP_BDCHGINFO *bdchginfo) SCIP_DECL_SORTPTRCOMP(SCIPvarCompActiveAndNegated) SCIP_VAR * SCIPvarGetAggrVar(SCIP_VAR *var) SCIP_VAR * SCIPbdchginfoGetVar(SCIP_BDCHGINFO *bdchginfo) SCIP_Bool SCIPvarIsOriginal(SCIP_VAR *var) SCIP_Bool SCIPvarIsTransformed(SCIP_VAR *var) SCIP_RETCODE SCIPvarsGetProbvarBinary(SCIP_VAR ***vars, SCIP_Bool **negatedarr, int nvars) void SCIPvarSetDeltransData(SCIP_VAR *var, SCIP_DECL_VARDELTRANS((*vardeltrans))) SCIP_VAR ** SCIPvarGetVubVars(SCIP_VAR *var) SCIP_Real SCIPvarGetBestRootSol(SCIP_VAR *var) SCIP_Real SCIPvarGetAggrScalar(SCIP_VAR *var) SCIP_Real SCIPvarGetUbAtIndex(SCIP_VAR *var, SCIP_BDCHGIDX *bdchgidx, SCIP_Bool after) SCIP_Bool SCIPvarIsInitial(SCIP_VAR *var) SCIP_BDCHGIDX * SCIPvarGetLastBdchgIndex(SCIP_VAR *var) SCIP_DECL_HASHGETKEY(SCIPvarGetHashkey) SCIP_BOUNDCHGTYPE SCIPboundchgGetBoundchgtype(SCIP_BOUNDCHG *boundchg) SCIP_Bool SCIPvarIsRemovable(SCIP_VAR *var) SCIP_Bool SCIPvarIsNegated(SCIP_VAR *var) SCIP_Bool SCIPvarIsDeleted(SCIP_VAR *var) SCIP_Bool SCIPbdchginfoIsRedundant(SCIP_BDCHGINFO *bdchginfo) SCIP_COL * SCIPvarGetCol(SCIP_VAR *var) SCIP_BOUNDTYPE * SCIPvarGetImplTypes(SCIP_VAR *var, SCIP_Bool varfixing) SCIP_RETCODE SCIPvarGetProbvarBinary(SCIP_VAR **var, SCIP_Bool *negated) SCIP_VAR ** SCIPvarGetMultaggrVars(SCIP_VAR *var) int SCIPvarGetNLocksUp(SCIP_VAR *var) SCIP_Bool SCIPvarsHaveCommonClique(SCIP_VAR *var1, SCIP_Bool value1, SCIP_VAR *var2, SCIP_Bool value2, SCIP_Bool regardimplics) type definitions for problem variables int SCIPvarGetBranchPriority(SCIP_VAR *var) SCIP_VARDATA * SCIPvarGetData(SCIP_VAR *var) SCIP_RETCODE SCIPvarSetInitial(SCIP_VAR *var, SCIP_Bool initial) int SCIPvarGetNUses(SCIP_VAR *var) SCIP_Bool SCIPbdchginfoIsTighter(SCIP_BDCHGINFO *bdchginfo1, SCIP_BDCHGINFO *bdchginfo2) SCIP_VAR * SCIPvarGetNegatedVar(SCIP_VAR *var) SCIP_Real SCIPvarGetUbLazy(SCIP_VAR *var) void SCIPvarMarkNotDeletable(SCIP_VAR *var) SCIP_Real SCIPboundchgGetNewbound(SCIP_BOUNDCHG *boundchg) SCIP_Real SCIPvarGetUbLocal(SCIP_VAR *var) SCIP_Real SCIPvarGetNLPSol(SCIP_VAR *var) int SCIPvarGetIndex(SCIP_VAR *var) SCIP_Bool SCIPvarWasFixedAtIndex(SCIP_VAR *var, SCIP_BDCHGIDX *bdchgidx, SCIP_Bool after) SCIP_Bool SCIPboundchgIsRedundant(SCIP_BOUNDCHG *boundchg) int SCIPvarGetNImpls(SCIP_VAR *var, SCIP_Bool varfixing) SCIP_Real SCIPvarGetBestBoundGlobal(SCIP_VAR *var) SCIP_Real SCIPvarGetInferenceSum(SCIP_VAR *var, SCIP_BRANCHDIR dir) SCIP_Real SCIPvarGetBestBoundLocal(SCIP_VAR *var) SCIP_Real * SCIPvarGetVubCoefs(SCIP_VAR *var) SCIP_Real SCIPvarGetUnchangedObj(SCIP_VAR *var) SCIP_VALUEHISTORY * SCIPvarGetValuehistory(SCIP_VAR *var) SCIP_Real SCIPvarGetWorstBoundGlobal(SCIP_VAR *var) SCIP_Real * SCIPvarGetVlbConstants(SCIP_VAR *var) SCIP_Real SCIPvarGetNegationConstant(SCIP_VAR *var) SCIP_HOLELIST * SCIPholelistGetNext(SCIP_HOLELIST *holelist) int * SCIPvarGetImplIds(SCIP_VAR *var, SCIP_Bool varfixing) int SCIPvarGetMultaggrNVars(SCIP_VAR *var) int SCIPvarGetNVlbs(SCIP_VAR *var) SCIP_Real * SCIPvarGetMultaggrScalars(SCIP_VAR *var) SCIP_BOUNDTYPE SCIPvarGetWorstBoundType(SCIP_VAR *var) SCIP_BOUNDTYPE SCIPbdchginfoGetInferBoundtype(SCIP_BDCHGINFO *bdchginfo) SCIP_RETCODE SCIPvarGetProbvarHole(SCIP_VAR **var, SCIP_Real *left, SCIP_Real *right) SCIP_Real SCIPvarGetWorstBoundLocal(SCIP_VAR *var) SCIP_Real SCIPvarGetLPSol(SCIP_VAR *var) SCIP_VARTYPE SCIPvarGetType(SCIP_VAR *var) SCIP_Real * SCIPvarGetVlbCoefs(SCIP_VAR *var) SCIP_Real SCIPbdchginfoGetOldbound(SCIP_BDCHGINFO *bdchginfo) SCIP_Real SCIPvarGetLbGlobal(SCIP_VAR *var) SCIP_Bool SCIPvarIsTransformedOrigvar(SCIP_VAR *var) SCIP_Bool SCIPbdchgidxIsEarlierNonNull(SCIP_BDCHGIDX *bdchgidx1, SCIP_BDCHGIDX *bdchgidx2) SCIP_Real SCIPvarGetLbOriginal(SCIP_VAR *var) int SCIPvarGetProbindex(SCIP_VAR *var) SCIP_Real SCIPvarGetInferenceSumCurrentRun(SCIP_VAR *var, SCIP_BRANCHDIR dir) int SCIPvarGetNBdchgInfosLb(SCIP_VAR *var) void SCIPvarSetData(SCIP_VAR *var, SCIP_VARDATA *vardata) int SCIPvarGetNCliques(SCIP_VAR *var, SCIP_Bool varfixing) type definitions for branching and inference history SCIP_Real SCIPvarGetLPSol_rec(SCIP_VAR *var) SCIP_Real SCIPvarGetNLPSol_rec(SCIP_VAR *var) SCIP_Bool SCIPvarMayRoundUp(SCIP_VAR *var) SCIP_Bool SCIPvarWasFixedEarlier(SCIP_VAR *var1, SCIP_VAR *var2) int SCIPbdchginfoGetInferInfo(SCIP_BDCHGINFO *bdchginfo) SCIP_Real SCIPvarGetUbOriginal(SCIP_VAR *var) SCIP_Real SCIPvarGetCutoffSum(SCIP_VAR *var, SCIP_BRANCHDIR dir) SCIP_Bool SCIPvarIsActive(SCIP_VAR *var) void SCIPvarSetCopyData(SCIP_VAR *var, SCIP_DECL_VARCOPY((*varcopy))) SCIP_Real * SCIPvarGetImplBounds(SCIP_VAR *var, SCIP_Bool varfixing) common defines and data types used in all packages of SCIP SCIP_BOUNDTYPE SCIPboundchgGetBoundtype(SCIP_BOUNDCHG *boundchg) SCIP_Bool SCIPvarIsDeletable(SCIP_VAR *var) SCIP_VAR * SCIPvarGetProbvar(SCIP_VAR *var) SCIP_CONS * SCIPbdchginfoGetInferCons(SCIP_BDCHGINFO *bdchginfo) SCIP_BRANCHDIR SCIPvarGetBranchDirection(SCIP_VAR *var) SCIP_Longint SCIPvarGetNBranchings(SCIP_VAR *var, SCIP_BRANCHDIR dir) int SCIPvarGetNLocksDown(SCIP_VAR *var) SCIP_Real SCIPvarGetAvgBranchdepth(SCIP_VAR *var, SCIP_BRANCHDIR dir) SCIP_Real SCIPvarGetBestRootRedcost(SCIP_VAR *var) type definitions for constraints and constraint handlers SCIP_BDCHGINFO * SCIPvarGetBdchgInfoUb(SCIP_VAR *var, int pos) SCIP_Bool SCIPbdchginfoHasInferenceReason(SCIP_BDCHGINFO *bdchginfo) int SCIPvarCompareActiveAndNegated(SCIP_VAR *var1, SCIP_VAR *var2) |