Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dcons_components.c1080 SCIP_Real newcutoffbound = SCIPgetSolTransObj(scip, bestsol); in solveComponent() local
1082 … assert(problem->nlowerboundinf > 0 || SCIPisGE(scip, newcutoffbound, problem->lowerbound)); in solveComponent()
1084 newcutoffbound = newcutoffbound - problem->lowerbound + component->fixedvarsobjsum; in solveComponent()
1087 newcutoffbound += component->lastdualbound; in solveComponent()
1089 if( SCIPisSumLT(subscip, newcutoffbound, SCIPgetCutoffbound(subscip)) ) in solveComponent()
1091 SCIPdebugMessage("update cutoff bound to %16.9g\n", newcutoffbound); in solveComponent()
1093 SCIP_CALL( SCIPupdateCutoffbound(subscip, newcutoffbound) ); in solveComponent()
H A Dscip_lp.h1541 SCIP_Real newcutoffbound /**< new cutoffbound */
H A Dscip_lp.c2290 SCIP_Real newcutoffbound /**< new cutoffbound */ in SCIPchgCutoffboundDive() argument
2303 SCIP_CALL( SCIPlpSetCutoffbound(scip->lp, scip->set, scip->transprob, newcutoffbound) ); in SCIPchgCutoffboundDive()