Home
last modified time | relevance | path

Searched refs:lpdepth (Results 1 – 4 of 4) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dstruct_lp.h165 …int lpdepth; /**< depth level at which column entered the LP, or -1 i… member
232 …int lpdepth; /**< depth level at which row entered the LP, or -1 if n… member
H A Dpub_lp.h228 #define SCIPcolGetLPDepth(col) (col)->lpdepth
528 #define SCIProwGetLPDepth(row) (row)->lpdepth
H A Dconflict.c6675 row->lpdepth, weight, SCIPaggrRowGetRhs(aggrrow)); in addRowToAggrRow()
6865 assert(row->lpdepth == localrowdepth[i]); in addLocalRows()
7045 int lpdepth = SCIProwGetLPDepth(row); in getFarkasProof() local
7047 if( nlocalrows == 0 && lpdepth < SCIPtreeGetFocusDepth(tree) ) in getFarkasProof()
7053 if( lpdepth < SCIPtreeGetFocusDepth(tree) ) in getFarkasProof()
7059 localrowdepth[nlocalrows++] = lpdepth; in getFarkasProof()
7269 int lpdepth = SCIProwGetLPDepth(row); in getDualProof() local
7271 if( nlocalrows == 0 && lpdepth < SCIPtreeGetFocusDepth(tree) ) in getDualProof()
7277 if( lpdepth < SCIPtreeGetFocusDepth(tree) ) in getDualProof()
7283 localrowdepth[nlocalrows++] = lpdepth; in getDualProof()
H A Dlp.c3328 (*col)->lpdepth = -1; in SCIPcolCreate()
5196 (*row)->lpdepth = -1; in SCIProwCreate()
9467 col->lpdepth = depth; in SCIPlpAddCol()
9529 row->lpdepth = depth; in SCIPlpAddRow()
9650 col->lpdepth = -1; in SCIPlpShrinkCols()
9718 row->lpdepth = -1; in SCIPlpShrinkRows()
15214 col->lpdepth = -1; in lpDelColset()
15313 row->lpdepth = -1; in lpDelRowset()
16962 assert((col->lppos == -1) == (col->lpdepth == -1)); in SCIPcolGetLPPos()
16975 return col->lpdepth; in SCIPcolGetLPDepth()
[all …]