Home
last modified time | relevance | path

Searched refs:haslhs (Results 1 – 5 of 5) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_locks.c210 SCIP_Bool haslhs; in SCIPapplyLockFixings() local
536 haslhs = !SCIPisInfinity(scip, -SCIProwGetLhs(row)); in SCIPapplyLockFixings()
540 assert(hasrhs || haslhs); in SCIPapplyLockFixings()
552 if( (!haslhs || SCIPisFeasGE(scip, minact[rowpos], SCIProwGetLhs(row))) in SCIPapplyLockFixings()
588 if( haslhs ) in SCIPapplyLockFixings()
H A Dcons_pseudoboolean.c1668 SCIP_Bool haslhs; in lockRoundingAndCons() local
1697 haslhs = !SCIPisInfinity(scip, -lhs); in lockRoundingAndCons()
1707 SCIP_CALL( SCIPlockVarCons(scip, vars[v], cons, haslhs, hasrhs) ); in lockRoundingAndCons()
1737 SCIP_Bool haslhs; in unlockRoundingAndCons() local
1760 haslhs = !SCIPisInfinity(scip, -lhs); in unlockRoundingAndCons()
8579 SCIP_Bool haslhs; in SCIP_DECL_CONSLOCK() local
8599 haslhs = !SCIPisInfinity(scip, -lhs); in SCIP_DECL_CONSLOCK()
8660 if( haslhs ) in SCIP_DECL_CONSLOCK()
8677 if( !haslhs ) in SCIP_DECL_CONSLOCK()
8687 if( haslhs ) in SCIP_DECL_CONSLOCK()
[all …]
H A Dcons_linear.c11486 SCIP_Bool haslhs; in simplifyInequalities() local
11556 haslhs = TRUE; in simplifyInequalities()
11558 haslhs = FALSE; in simplifyInequalities()
11569 if( haslhs && hasrhs ) in simplifyInequalities()
11575 assert(haslhs != hasrhs); in simplifyInequalities()
11579 assert(!haslhs || !SCIPisNegative(scip, lhs)); in simplifyInequalities()
11632 side = haslhs ? lhs : rhs; in simplifyInequalities()
12107 if( haslhs ) in simplifyInequalities()
16688 SCIP_Bool haslhs; in SCIP_DECL_CONSLOCK() local
16705 if( haslhs ) in SCIP_DECL_CONSLOCK()
[all …]
H A Dcons_indicator.c6566 SCIP_Bool haslhs; in SCIP_DECL_CONSLOCK() local
6577 haslhs = ! SCIPisInfinity(scip, REALABS(SCIPgetLhsLinear(scip, consdata->lincons))); in SCIP_DECL_CONSLOCK()
6585 if ( haslhs ) in SCIP_DECL_CONSLOCK()
6596 if ( haslhs ) in SCIP_DECL_CONSLOCK()
H A Dcons_quadratic.c1064 SCIP_Bool haslhs; in hasQuadvarHpProperty() local
1075 haslhs = !SCIPisInfinity(scip, -consdata->lhs); in hasQuadvarHpProperty()
1080 …&& SCIPvarGetType(var) != SCIP_VARTYPE_BINARY && ((quadcoef < 0.0 && !haslhs) || (quadcoef > 0.0 &… in hasQuadvarHpProperty()
6024 SCIP_Bool haslhs = !SCIPisInfinity(scip, -consdata->lhs); in storeAllBilinearTerms() local
6047 conshdlrdata->bilinestimators[pos-1].noverest += (haslhs && !consdata->isconcave) ? 1 : 0; in storeAllBilinearTerms()
6053 conshdlrdata->bilinestimators[pos-1].nunderest += (haslhs && !consdata->isconcave) ? 1 : 0; in storeAllBilinearTerms()