Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/lpi/
H A Dlpi_spx1.cpp1403 …SCIP_Real rowrepswitch; /**< use row representation if number of rows divided by… member
1751 (*lpi)->rowrepswitch = SCIPlpiInfinity(*lpi); in SCIPlpiCreate()
2937 if( lpi->rowrepswitch >= 0 )
2942 rowrep = lpi->spx->nRows() > lpi->spx->nCols() * (lpi->rowrepswitch);
2944 rowrep = lpi->spx->nRows() * 1.1 > lpi->spx->nCols() * (lpi->rowrepswitch);
2981 if( lpi->rowrepswitch >= 0 )
2986 rowrep = lpi->spx->nRows() > lpi->spx->nCols() * (lpi->rowrepswitch);
2988 rowrep = lpi->spx->nRows() * 1.1 > lpi->spx->nCols() * (lpi->rowrepswitch);
5315 *dval = lpi->rowrepswitch;
5369 lpi->rowrepswitch = dval;
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dlp.c2957 SCIP_Real rowrepswitch, /**< new ROWREPSWITCH value */ in lpSetRowrepswitch() argument
2966 if( rowrepswitch != lp->lpirowrepswitch ) /*lint !e777*/ in lpSetRowrepswitch()
2968 SCIP_CALL( lpSetRealpar(lp, SCIP_LPPAR_ROWREPSWITCH, rowrepswitch, success) ); in lpSetRowrepswitch()
2970 lp->lpirowrepswitch = rowrepswitch; in lpSetRowrepswitch()
/dports/math/SCIP/scip-7.0.3/
H A DCHANGELOG2512 - rowrepswitch set to 2.0, so row representation is activated if LP has at least 2 times more rows …
5311 - `lp/rowrepswitch` telling simplex solver to switch to row representation of the basis (if possibl…