Home
last modified time | relevance | path

Searched refs:SCIPcolIsInLP (Results 1 – 8 of 8) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dpub_lp.h151 SCIP_Bool SCIPcolIsInLP(
229 #define SCIPcolIsInLP(col) ((col)->lppos >= 0) macro
H A Dpricestore.c406 assert(SCIPcolIsInLP(col) == (col->lpipos >= 0)); in SCIPpricestoreAddProbVars()
408 if( !SCIPcolIsInLP(col) ) in SCIPpricestoreAddProbVars()
H A Dpub_var.h959 #define SCIPvarIsInLP(var) ((var)->varstatus == SCIP_VARSTATUS_COLUMN && SCIPcolIsInLP
H A Dscip_var.c2973 if( !SCIPcolIsInLP(col) ) in SCIPgetVarStrongbranchFrac()
3464 if( !SCIPcolIsInLP(col) ) in SCIPgetVarStrongbranchWithPropagation()
3713 if( !SCIPcolIsInLP(col) ) in SCIPgetVarStrongbranchInt()
3834 if( !SCIPcolIsInLP(col) ) in SCIPgetVarsStrongbranchesFrac()
3946 if( !SCIPcolIsInLP(col) ) in SCIPgetVarsStrongbranchesInt()
H A Dheur_shiftandpropagate.c404 assert(SCIPcolIsInLP(col)); in transformVariable()
H A Dsolve.c1252 …IsInitial(var) && (SCIPvarGetStatus(var) != SCIP_VARSTATUS_COLUMN || !SCIPcolIsInLP(SCIPvarGetCol(… in initLP()
H A Dlp.c16753 #undef SCIPcolIsInLP
16979 SCIP_Bool SCIPcolIsInLP( in SCIPcolIsInLP() function
18553 assert(SCIPcolIsInLP(col)); in SCIPlpGetDegeneracy()
H A Dvar.c17397 return (SCIPvarGetStatus(var) == SCIP_VARSTATUS_COLUMN && SCIPcolIsInLP(var->data.col)); in SCIPvarIsInLP()