/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/pebbl/src/pbb/pebbl/ |
H A D | parBranching.h | 256 double relGap() 261 return branching::relGap(lo); 263 return branching::relGap(globalLoad); 266 double relGap(loadObject& l) { return branching::relGap(l); }; 267 double relGap(double boundValue) { return branching::relGap(boundValue); };
|
H A D | pbWorker.cpp | 979 double r = relGap(); in incumbentThreadBias()
|
H A D | pbOutput.cpp | 1137 ucout << "Gap: " << 100.0*relGap(aggBound) << " %\n\n"; in postRampUpAbort()
|
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/pebbl/src/bb/pebbl/ |
H A D | branching.h | 803 virtual double relGap(double boundValue); 804 virtual double relGap(loadObject& l); 805 virtual double relGap(); 1243 double relGap() { return bGlobal()->relGap(bound); } in relGap() function
|
H A D | branching.cpp | 637 double branching::relGap(double boundValue) in relGap() function in pebbl::branching 648 double branching::relGap(loadObject& l) in relGap() function in pebbl::branching 654 return relGap(l.aggregateBound); in relGap() 660 double branching::relGap() in relGap() function in pebbl::branching 663 return relGap(l); in relGap() 1125 ucout << " (" << 100*relGap(load.aggregateBound) << "%)\n"; in printAbortStatistics() 1489 *hlog << " " << 100*relGap(l.aggregateBound); in statusPrint() 1550 ucout << " gap=" << 100*relGap(l.aggregateBound) << '%'; in statusLine()
|
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/pebbl/ |
H A D | CHANGELOG | 77 - Added some more forms of the "relGap" function (to be used, for 83 - Made the new relGap() function work properly during ramp-up.
|
/dports/math/minizinc/libminizinc-2.5.5/include/minizinc/solvers/MIP/ |
H A D | MIP_osicbc_wrap.hh | 68 double relGap = 1e-8; member in MIPosicbcWrapper::Options
|
H A D | MIP_xpress_wrap.hh | 137 double relGap = 0.0001; member in MIPxpressWrapper::Options
|
H A D | MIP_cplex_wrap.hh | 59 double relGap = 1e-8; member in MIPCplexWrapper::Options
|
H A D | MIP_gurobi_wrap.hh | 62 double relGap = 1e-8; member in MIPGurobiWrapper::Options
|
H A D | MIP_scip_wrap.hh | 294 double relGap = 1e-8; member in MIPScipWrapper::Options
|
/dports/math/minizinc/libminizinc-2.5.5/solvers/MIP/ |
H A D | MIP_osicbc_wrap.cpp | 136 } else if (cop.get("--relGap", &relGap)) { // NOLINT: Allow repeated empty if in processOption() 784 if (_options->relGap >= 0.0) { in solve() 785 model.setAllowableFractionGap(_options->relGap); in solve()
|
H A D | MIP_xpress_wrap.cpp | 383 } else if (cop.get("--relGap", &relGap)) { // NOLINT: Allow repeated empty if in processOption() 407 _plugin->XPRSsetdblcontrol(xprsProblem, XPRS_MIPRELSTOP, _options->relGap); in setOptions()
|
H A D | MIP_scip_wrap.cpp | 263 } else if (cop.get("--relGap", &relGap)) { // NOLINT: Allow repeated empty if in processOption() 805 if (_options->relGap >= 0.0) in solveSCIP() 806 SCIP_PLUGIN_CALL_R(_plugin, _plugin->SCIPsetRealParam(_scip, "limits/gap", _options->relGap)); in solveSCIP()
|
H A D | MIP_gurobi_wrap.cpp | 225 } else if (cop.get("--relGap", &relGap)) { // NOLINT: Allow repeated empty if in processOption() 933 if (_options->relGap >= 0.0) { in solve() 934 _error = dll_GRBsetdblparam(dll_GRBgetenv(_model), "MIPGap", _options->relGap); in solve()
|
H A D | MIP_cplex_wrap.cpp | 593 } else if (cop.get("--relGap", &relGap)) { // NOLINT: Allow repeated empty if in processOption() 1169 if (_options->relGap >= 0.0) { in solve() 1170 _status = dll_CPXsetdblparam(_env, CPXPARAM_MIP_Tolerances_MIPGap, _options->relGap); in solve()
|
/dports/math/minizinc/libminizinc-2.5.5/docs/en/ |
H A D | solvers.rst | 162 …--relGap <n> relative gap |primal-dual|/<solver-dep> to stop. Default 1e-8, set <0 to use ba…
|