Home
last modified time | relevance | path

Searched refs:rootsolval (Results 1 – 3 of 3) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_linesearchdiving.c185 SCIP_Real rootsolval; in SCIP_DECL_DIVESETGETSCORE() local
188 rootsolval = SCIPvarGetRootSol(cand); in SCIP_DECL_DIVESETGETSCORE()
191 if( SCIPisLT(scip, candsol, rootsolval) ) in SCIP_DECL_DIVESETGETSCORE()
199 distquot = (candsfrac + SCIPsumepsilon(scip)) / (rootsolval - candsol); in SCIP_DECL_DIVESETGETSCORE()
203 distquot = (candsfrac + SCIPsumepsilon(scip)) / (rootsolval - candsol); in SCIP_DECL_DIVESETGETSCORE()
205 distquot = (1.0 - candsfrac + SCIPsumepsilon(scip)) / (candsol - rootsolval); in SCIP_DECL_DIVESETGETSCORE()
217 else if( SCIPisGT(scip, candsol, rootsolval) ) in SCIP_DECL_DIVESETGETSCORE()
223 distquot = (1.0 - candsfrac + SCIPsumepsilon(scip)) / (candsol - rootsolval); in SCIP_DECL_DIVESETGETSCORE()
227 distquot = (1.0 - candsfrac + SCIPsumepsilon(scip)) / (candsol - rootsolval); in SCIP_DECL_DIVESETGETSCORE()
229 distquot = (candsfrac + SCIPsumepsilon(scip)) / (rootsolval - candsol); in SCIP_DECL_DIVESETGETSCORE()
H A Dbranch_pscost.c628 SCIP_Real rootsolval; in SCIP_DECL_BRANCHEXECLP() local
632 rootsolval = SCIPvarGetRootSol(lpcands[c]); in SCIP_DECL_BRANCHEXECLP()
633 rootdiff = REALABS(lpcandssol[c] - rootsolval); in SCIP_DECL_BRANCHEXECLP()
H A Dheur_alns.c1299 SCIP_Real rootsolval; in getVariablePscostScore() local
1308 rootsolval = SCIPvarGetRootSol(var); in getVariablePscostScore()
1311 if( SCIPisEQ(scip, rootsolval, refsolval) ) in getVariablePscostScore()
1314 return SCIPgetVarPseudocostVal(scip, var, refsolval - rootsolval); in getVariablePscostScore()