Home
last modified time | relevance | path

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

/dports/math/couenne/Couenne-releases-0.5.8/Couenne/src/problem/
H A DcheckNLP.cpp50 (fabs (val - COUENNE_round (val)) > feas_tolerance_)) { in checkNLP()
109 if (fabs (realobj - obj) / (1. + fabs (realobj)) > feas_tolerance_) { in checkNLP()
133 if ((val > domain_.ub (i) + feas_tolerance_) || in checkNLP()
134 (val < domain_.lb (i) - feas_tolerance_)) { in checkNLP()
147 (fabs (val - COUENNE_round (val)) > feas_tolerance_)) { in checkNLP()
218 ((delta /= denom) > CoinMin (COUENNE_EPS, feas_tolerance_)))) { in checkNLP()
344 fabs (val - COUENNE_round (val)), feas_tolerance_, in checkInt()
345 fabs (val - COUENNE_round (val)) - feas_tolerance_); in checkInt()
470 ((delta /= denom) > CoinMin (COUENNE_EPS, feas_tolerance_)))) { in checkAux()
477 i, feas_tolerance_, delta, deldenom, ratio, COUENNE_EPS); in checkAux()
[all …]
H A DCouenneProblemConstructors.cpp75 feas_tolerance_ (feas_tolerance_default), in CouenneProblem()
152 feas_tolerance_ (p.feas_tolerance_), in CouenneProblem()
299 options -> GetNumericValue ("feas_tolerance", feas_tolerance_, "couenne."); in initOptions()
H A DCouenneProblem.hpp270 CouNumber feas_tolerance_; member in Couenne::CouenneProblem
825 double getFeasTol() {return feas_tolerance_;} in getFeasTol()
H A DgetIntegerCandidate.cpp361 recBSol -> update (x, nVars(), xp, feas_tolerance_); in getIntegerCandidate()
/dports/math/couenne/Couenne-releases-0.5.8/Couenne/src/branch/
H A DCouenneObject.cpp35 feas_tolerance_ (feas_tolerance_default), in CouenneObject()
58 feas_tolerance_ (feas_tolerance_default), in CouenneObject()
106 feas_tolerance_ (feas_tolerance_default), in CouenneObject()
128 feas_tolerance_ (src.feas_tolerance_), in CouenneObject()
447 ((retval /= denom) < CoinMin (COUENNE_EPS, feas_tolerance_))) in checkInfeasibility()
493 base -> options() -> GetNumericValue ("feas_tolerance", feas_tolerance_, "couenne."); in setParameters()
H A DCouenneObject.hpp204 CouNumber feas_tolerance_; member in Couenne::CouenneObject
H A Dinfeasibility.cpp98 if (retval <= CoinMin (COUENNE_EPS, feas_tolerance_)) in infeasibility()
H A DinfeasibilityVT.cpp27 CouNumber tol = CoinMin (COUENNE_EPS, feas_tolerance_); in infeasibility()