Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dstruct_lp.h316 int colssize; /**< available slots in cols vector */ member
H A Dsepa_zerohalf.c163 int colssize; /**< length of cols array */ member
732 …SCIP_CALL( SCIPensureBlockMemoryArray(scip, &mod2matrix->cols, &mod2matrix->colssize, mod2matrix->… in mod2MatrixAddCol()
1009 SCIPfreeBlockMemoryArrayNull(scip, &mod2matrix->cols, mod2matrix->colssize); in destroyMod2Matrix()
1043 mod2matrix->colssize = 0; in buildMod2Matrix()
H A Dlp.c252 assert(lp->ncols <= lp->colssize); in ensureColsSize()
254 if( num > lp->colssize ) in ensureColsSize()
260 lp->colssize = newsize; in ensureColsSize()
262 assert(num <= lp->colssize); in ensureColsSize()
9121 (*lp)->colssize = 0; in SCIPlpCreate()