Home
last modified time | relevance | path

Searched refs:negSlack (Results 1 – 5 of 5) sorted by relevance

/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/core/plugins/transform/
H A Dadd_slack_vars.py154 negSlack = Var(within=NonNegativeReals)
155 xblock.add_component(varName, negSlack)
157 cons._body -= negSlack
159 obj_expr += negSlack
/dports/math/ogdf/OGDF/src/coin/Clp/
H A DIdiot.cpp95 int * negSlack = posSlack + nrows; in cleanIteration() local
96 int * nextSlack = negSlack + nrows; in cleanIteration()
207 iCol = negSlack[i]; in cleanIteration()
221 iCol = negSlack[i]; in cleanIteration()
493 int * negSlack = posSlack + nrows; in solve2() local
497 negSlack[i] = -1; in solve2()
565 iCol = negSlack[i]; in solve2()
594 negSlack[i] = iCol; in solve2()
748 int * negSlack = posSlack + nrows; in solve2() local
1349 iCol = negSlack[i]; in crossOver()
[all …]
H A DClpSolve.cpp1418 int * negSlack = new int[numberRows]; in initialSolve() local
1422 negSlack[iRow] = -1; in initialSolve()
1444 else if (element[columnStart[iColumn]] < 0.0 && negSlack[jRow] < 0) in initialSolve()
1445 negSlack[jRow] = iColumn; in initialSolve()
1449 else if (element[columnStart[iColumn]] > 0.0 && negSlack[jRow] < 0) in initialSolve()
1450 negSlack[jRow] = iColumn; in initialSolve()
1481 int jColumn = negSlack[iRow]; in initialSolve()
1499 delete [] negSlack; in initialSolve()
/dports/math/clp/Clp-1.17.3/Clp/src/
H A DIdiot.cpp210 iCol = negSlack[i]; in cleanIteration()
225 iCol = negSlack[i]; in cleanIteration()
518 negSlack[i] = -1; in solve2()
537 negSlack[iRow] = i; in solve2()
586 iCol = negSlack[i]; in solve2()
615 negSlack[i] = iCol; in solve2()
1487 iCol = negSlack[i]; in crossOver()
1535 iCol = negSlack[i]; in crossOver()
1549 iCol = negSlack[i]; in crossOver()
1655 iCol = negSlack[i]; in crossOver()
[all …]
H A DClpSolve.cpp2457 int *negSlack = new int[numberRows + numberColumns]; in initialSolve() local
2459 int *nextNegSlack = negSlack + numberRows; in initialSolve()
2463 negSlack[iRow] = -1; in initialSolve()
2493 if (negSlack[jRow] < 0) { in initialSolve()
2494 negSlack[jRow] = iColumn; in initialSolve()
2496 int jColumn = negSlack[jRow]; in initialSolve()
2505 else if (element[columnStart[iColumn]] > 0.0 && negSlack[jRow] < 0) in initialSolve()
2506 negSlack[jRow] = iColumn; in initialSolve()
2561 int jColumn = negSlack[iRow]; in initialSolve()
2602 delete[] negSlack; in initialSolve()