Home
last modified time | relevance | path

Searched refs:relGap (Results 1 – 17 of 17) sorted by relevance

/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/pebbl/src/pbb/pebbl/
H A DparBranching.h256 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 DpbWorker.cpp979 double r = relGap(); in incumbentThreadBias()
H A DpbOutput.cpp1137 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 Dbranching.h803 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 Dbranching.cpp637 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 DCHANGELOG77 - 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 DMIP_osicbc_wrap.hh68 double relGap = 1e-8; member in MIPosicbcWrapper::Options
H A DMIP_xpress_wrap.hh137 double relGap = 0.0001; member in MIPxpressWrapper::Options
H A DMIP_cplex_wrap.hh59 double relGap = 1e-8; member in MIPCplexWrapper::Options
H A DMIP_gurobi_wrap.hh62 double relGap = 1e-8; member in MIPGurobiWrapper::Options
H A DMIP_scip_wrap.hh294 double relGap = 1e-8; member in MIPScipWrapper::Options
/dports/math/minizinc/libminizinc-2.5.5/solvers/MIP/
H A DMIP_osicbc_wrap.cpp136 } 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 DMIP_xpress_wrap.cpp383 } 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 DMIP_scip_wrap.cpp263 } 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 DMIP_gurobi_wrap.cpp225 } 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 DMIP_cplex_wrap.cpp593 } 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 Dsolvers.rst162 …--relGap <n> relative gap |primal-dual|/<solver-dep> to stop. Default 1e-8, set <0 to use ba…