Home
last modified time | relevance | path

Searched refs:CPX_ALG_DUAL (Results 1 – 8 of 8) sorted by relevance

/dports/math/glpk/glpk-5.0/examples/cplex/
H A Dcplex.c1206 if (lp->meth == CPX_ALG_PRIMAL || lp->meth == CPX_ALG_DUAL) in CPXgetbase()
1293 if (lp->meth == CPX_ALG_PRIMAL || lp->meth == CPX_ALG_DUAL) in CPXgetdj()
1396 if (lp->meth == CPX_ALG_PRIMAL || lp->meth == CPX_ALG_DUAL) in CPXgetobjval()
1419 if (lp->meth == CPX_ALG_PRIMAL || lp->meth == CPX_ALG_DUAL) in CPXgetpi()
1458 if (lp->meth == CPX_ALG_PRIMAL || lp->meth == CPX_ALG_DUAL) in CPXgetslack()
1543 if (lp->meth == CPX_ALG_PRIMAL || lp->meth == CPX_ALG_DUAL) in CPXgetx()
1887 else if (lp->meth == CPX_ALG_PRIMAL || lp->meth == CPX_ALG_DUAL) in CPXsolninfo()
1917 if (lp->meth == CPX_ALG_PRIMAL || lp->meth == CPX_ALG_DUAL) in CPXsolution()
2047 case CPX_ALG_DUAL: in solvelp()
2117 errcode = solvelp(env, lp, CPX_ALG_DUAL); in CPXdualopt()
H A Dcplex.h132 #define CPX_ALG_DUAL 2 macro
/dports/math/concorde/concorde/LP/
H A Dlpcplex8.c1482 if ( CPXgetmethod (lp->cplex_env, lp->cplex_lp) == CPX_ALG_DUAL && in CClp_pi()
1540 if (solmethod == CPX_ALG_PRIMAL || solmethod == CPX_ALG_DUAL) { in CClp_status()
1545 } else if (solstat == CPX_STAT_INFEASIBLE && solmethod==CPX_ALG_DUAL) { in CClp_status()
1800 if ( CPXgetmethod (lp->cplex_env, lp->cplex_lp) != CPX_ALG_DUAL || in getfarkasmultipliers()
/dports/math/osi/Osi-0.108.6/Osi/src/OsiCpx/
H A DOsiCpxSolverInterface.cpp729 …return ((method == CPX_ALG_PRIMAL && stat == CPX_INFEASIBLE) || (method == CPX_ALG_DUAL && stat ==… in isProvenPrimalInfeasible()
750 …return ((method == CPX_ALG_PRIMAL && stat == CPX_UNBOUNDED) || (method == CPX_ALG_DUAL && stat == … in isProvenDualInfeasible()
776 return method == CPX_ALG_DUAL && stat == CPX_STAT_ABORT_OBJ_LIM; in isDualObjectiveLimitReached()
778 return method == CPX_ALG_DUAL && stat == CPX_OBJ_LIM; in isDualObjectiveLimitReached()
/dports/math/clp/Clp-1.17.3/Osi/src/OsiCpx/
H A DOsiCpxSolverInterface.cpp729 …return ((method == CPX_ALG_PRIMAL && stat == CPX_INFEASIBLE) || (method == CPX_ALG_DUAL && stat ==… in isProvenPrimalInfeasible()
750 …return ((method == CPX_ALG_PRIMAL && stat == CPX_UNBOUNDED) || (method == CPX_ALG_DUAL && stat == … in isProvenDualInfeasible()
776 return method == CPX_ALG_DUAL && stat == CPX_STAT_ABORT_OBJ_LIM; in isDualObjectiveLimitReached()
778 return method == CPX_ALG_DUAL && stat == CPX_OBJ_LIM; in isDualObjectiveLimitReached()
/dports/math/ogdf/OGDF/src/coin/Osi/
H A DOsiCpxSolverInterface.cpp773 method == CPX_ALG_DUAL && stat == CPX_UNBOUNDED || in isProvenPrimalInfeasible()
797 method == CPX_ALG_DUAL && stat == CPX_INFEASIBLE || in isProvenDualInfeasible()
825 return method == CPX_ALG_DUAL && stat == CPX_STAT_ABORT_OBJ_LIM; in isDualObjectiveLimitReached()
827 return method == CPX_ALG_DUAL && stat == CPX_OBJ_LIM; in isDualObjectiveLimitReached()
/dports/math/py-or-tools/or-tools-9.2/ortools/linear_solver/
H A Dcplex_interface.cc1041 alg = CPX_ALG_DUAL; in SetLpAlgorithm()
/dports/math/SCIP/scip-7.0.3/src/lpi/
H A Dlpi_cpx.c3143 …urn (lpi->solstat == CPX_STAT_INFEASIBLE && CPXgetmethod(lpi->cpxenv, lpi->cpxlp) == CPX_ALG_DUAL); in SCIPlpiHasDualRay()