Home
last modified time | relevance | path

Searched refs:SCIPlpGetNCols (Results 1 – 11 of 11) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dpricestore.c374 assert(prob->nvars >= SCIPlpGetNCols(lp)); in SCIPpricestoreAddProbVars()
377 if( prob->ncolvars == SCIPlpGetNCols(lp) ) in SCIPpricestoreAddProbVars()
496 pricestore->nvars, SCIPlpGetNCols(lp)); in SCIPpricestoreApplyVars()
H A Dprob.h628 #define SCIPprobAllColsInLP(prob,set,lp) (SCIPlpGetNCols(lp) == (prob)->ncolvars && (set)->nactivep…
H A Dlp.h1460 int SCIPlpGetNCols(
1590 #define SCIPlpGetNCols(lp) ((lp)->ncols) macro
H A Dscip_lp.c475 *ncols = SCIPlpGetNCols(scip->lp); in SCIPgetLPColsData()
525 return SCIPlpGetNCols(scip->lp); in SCIPgetNLPCols()
1060 SCIP_CALL( SCIPallocBufferArray(scip, &pointvals, SCIPlpGetNCols(scip->lp)) ); in SCIPcomputeLPRelIntPoint()
1072 for( i = 0; i < SCIPlpGetNCols(scip->lp); ++i ) in SCIPcomputeLPRelIntPoint()
H A Dtree.c303 (*probingnode)->ninitialcols = SCIPlpGetNCols(lp); in probingnodeCreate()
363 probingnode->ncols = SCIPlpGetNCols(lp); in probingnodeUpdate()
639 (*subroot)->ncols = SCIPlpGetNCols(lp); in subrootCreate()
3515 assert(lpforkdepth == -1 || SCIPlpGetNCols(lp) == tree->pathnlpcols[lpforkdepth]); in SCIPtreeLoadLP()
3517 assert(lpforkdepth >= 0 || SCIPlpGetNCols(lp) == 0); in SCIPtreeLoadLP()
3779 SCIP_CALL( SCIPlpShrinkCols(lp, set, SCIPlpGetNCols(lp) - SCIPlpGetNNewcols(lp)) ); in focusnodeCleanupVars()
4067 SCIP_CALL( SCIPlpShrinkCols(lp, set, SCIPlpGetNCols(lp) - SCIPlpGetNNewcols(lp)) ); in focusnodeToFork()
4191 SCIP_CALL( SCIPlpShrinkCols(lp, set, SCIPlpGetNCols(lp) - SCIPlpGetNNewcols(lp)) ); in focusnodeToSubroot()
4548 tree->pathnlpcols[tree->focusnode->depth] = SCIPlpGetNCols(lp); in SCIPnodeFocus()
4559 tree->pathnlpcols[tree->focusnode->depth] = SCIPlpGetNCols(lp); in SCIPnodeFocus()
[all …]
H A Dprob.c2281 assert(SCIPlpGetNCols(lp) <= prob->ncolvars && prob->ncolvars <= prob->nvars); in SCIPprobAllColsInLP()
2283 return (SCIPlpGetNCols(lp) == prob->ncolvars && set->nactivepricers == 0); in SCIPprobAllColsInLP()
H A Dbranch.c251 ncols = SCIPlpGetNCols(lp); in branchcandCalcLPCands()
H A Dsol.c847 ncols = SCIPlpGetNCols(lp); in SCIPsolLinkLPSol()
H A Dconflict.c7159 ncols = SCIPlpGetNCols(lp); in getDualProof()
7841 ncols = SCIPlpGetNCols(lp); in runBoundHeuristic()
H A Dsolve.c1198 assert(SCIPlpGetNCols(lp) == 0); in initLP()
H A Dlp.c16794 #undef SCIPlpGetNCols
17439 int SCIPlpGetNCols( in SCIPlpGetNCols() function