Home
last modified time | relevance | path

Searched refs:SCIProwGetConstant (Results 1 – 25 of 25) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dpub_lp.h334 SCIP_Real SCIProwGetConstant(
507 #define SCIProwGetConstant(row) (row)->constant macro
H A Dsepastore.c304 lhs -= SCIProwGetConstant(cut); in sepastoreIsBdchgApplicable()
335 rhs -= SCIProwGetConstant(cut); in sepastoreIsBdchgApplicable()
764 lhs -= SCIProwGetConstant(cut); in sepastoreApplyBdchg()
783 rhs -= SCIProwGetConstant(cut); in sepastoreApplyBdchg()
H A Dsepa_zerohalf.c655 lhs = SCIProwGetLhs(rows[i]) - SCIProwGetConstant(rows[i]); in mod2MatrixTransformContRows()
656 rhs = SCIProwGetRhs(rows[i]) - SCIProwGetConstant(rows[i]); in mod2MatrixTransformContRows()
657 activity = SCIPgetRowSolActivity(scip, rows[i], sol) - SCIProwGetConstant(rows[i]); in mod2MatrixTransformContRows()
1124 activity = SCIPgetRowSolActivity(scip, rows[i], sol) - SCIProwGetConstant(rows[i]); in buildMod2Matrix()
1127 lhs = SCIPfeasCeil(scip, SCIProwGetLhs(rows[i]) - SCIProwGetConstant(rows[i])); in buildMod2Matrix()
1128 rhs = SCIPfeasFloor(scip, SCIProwGetRhs(rows[i]) - SCIProwGetConstant(rows[i])); in buildMod2Matrix()
1494 *cutrhs += weight * SCIPfeasFloor(scip, SCIProwGetRhs(row) - SCIProwGetConstant(row)); in addOrigRow()
1499 *cutrhs += weight * SCIPfeasCeil(scip, SCIProwGetLhs(row) - SCIProwGetConstant(row)); in addOrigRow()
H A Dsepa_mcf.c923 rowlhs = SCIProwGetLhs(row) - SCIProwGetConstant(row); in extractFlowRows()
924 rowrhs = SCIProwGetRhs(row) - SCIProwGetConstant(row); in extractFlowRows()
1170 rowlhs = SCIProwGetLhs(row) - SCIProwGetConstant(row); in extractCapacityRows()
1171 rowrhs = SCIProwGetRhs(row) - SCIProwGetConstant(row); in extractCapacityRows()
1579 SCIP_Real rowlhs = SCIProwGetLhs(row) - SCIProwGetConstant(row); in addFlowrowToCommodity()
1580 SCIP_Real rowrhs = SCIProwGetRhs(row) - SCIProwGetConstant(row); in addFlowrowToCommodity()
5118 … rhs = SCIProwGetRhs(nodeflowrows[node1][k]) - SCIProwGetConstant(nodeflowrows[node1][k]); in nodepairqueueCreate()
5120 … rhs = SCIProwGetLhs(nodeflowrows[node1][k]) - SCIProwGetConstant(nodeflowrows[node1][k]); in nodepairqueueCreate()
6070 rhs = SCIProwGetRhs(nodeflowrows[v][k]) - SCIProwGetConstant(nodeflowrows[v][k]); in generateClusterCuts()
6072 rhs = SCIProwGetLhs(nodeflowrows[v][k]) - SCIProwGetConstant(nodeflowrows[v][k]); in generateClusterCuts()
[all …]
H A Dsepa_disjunctive.c335 rhsrow = SCIProwGetRhs(rows[r]) - SCIProwGetConstant(rows[r]); in generateDisjCutSOS1()
336 lhsrow = SCIProwGetLhs(rows[r]) - SCIProwGetConstant(rows[r]); in generateDisjCutSOS1()
H A Dscip_nonlinear.c1387 lhss[i] = SCIProwGetLhs(rows[i]) - SCIProwGetConstant(rows[i]); in SCIPaddNlpiProbRows()
1388 rhss[i] = SCIProwGetRhs(rows[i]) - SCIProwGetConstant(rows[i]); in SCIPaddNlpiProbRows()
H A Dheur_distributiondiving.c272 *mu = SCIProwGetConstant(row); in rowCalculateGauss()
H A Dheuristics.c887 constant = SCIProwGetConstant(rows[i]); in createRows()
H A Ddebug.c861 minactivity = SCIProwGetConstant(row); in SCIPdebugCheckRow()
900 printf(" %.15g <= %.15g", lhs, SCIProwGetConstant(row)); in SCIPdebugCheckRow()
H A Dsepa_cgmip.c1143 val = SCIProwGetLhs(row) - SCIProwGetConstant(row); in createSubscip()
1148 val = SCIProwGetRhs(row) - SCIProwGetConstant(row); in createSubscip()
2931 val = SCIProwGetLhs(row) - SCIProwGetConstant(row); in computeCut()
2938 val = SCIProwGetRhs(row) - SCIProwGetConstant(row); in computeCut()
H A Dscip_copy.c208 … SCIProwGetLhs(row) - SCIProwGetConstant(row), SCIProwGetRhs(row) - SCIProwGetConstant(row), in copyCuts()
H A Dheur_lpface.c263 constant = SCIProwGetConstant(rows[i]); in createRows()
H A Dheur_octane.c1081 constant = SCIProwGetConstant(rows[i]); in SCIP_DECL_HEUREXEC()
H A Dbranch_distribution.c456 *mu = SCIProwGetConstant(row); in rowCalculateGauss()
H A Dheur_repair.c753 constant = SCIProwGetConstant(rows[i]); in applyRepair()
H A Dnlp.c2221 SCIProwGetConstant(row), in SCIPnlrowCreateFromRow()
2237 SCIProwGetConstant(row), in SCIPnlrowCreateFromRow()
2247 SCIProwGetConstant(row), in SCIPnlrowCreateFromRow()
H A Dheur_shiftandpropagate.c599 constant = SCIProwGetConstant(row); in initMatrix()
H A Dcons_indicator.c2408 rowlhs = SCIProwGetLhs(row) - SCIProwGetConstant(row); in addAltLPRow()
2409 rowrhs = SCIProwGetRhs(row) - SCIProwGetConstant(row); in addAltLPRow()
H A Dreopt.c1579 lhs -= SCIProwGetConstant(lprows[r]); in storeCuts()
1581 rhs -= SCIProwGetConstant(lprows[r]); in storeCuts()
H A Dconflict.c5851 constant = SCIProwGetConstant(row); in addSideRemoval()
H A Dlp.c16766 #undef SCIProwGetConstant
17122 SCIP_Real SCIProwGetConstant( in SCIProwGetConstant() function
/dports/math/SCIP/scip-7.0.3/examples/GMI/src/
H A Dsepa_gmi.c495 *cutrhs -= cutelem * (rrhs - SCIProwGetConstant(row)); in getGMIFromRow()
499 *cutrhs -= cutelem * (rlhs - SCIProwGetConstant(row)); in getGMIFromRow()
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dscip.pxd1626 SCIP_Real SCIProwGetConstant(SCIP_ROW* row)
H A Dscip.pyx397 return SCIProwGetConstant(self.scip_row)
H A Dscip.c68120 …__pyx_t_1 = PyFloat_FromDouble(SCIProwGetConstant(__pyx_v_self->scip_row)); if (unlikely(!__pyx_t_…