Home
last modified time | relevance | path

Searched refs:dual_objective (Results 1 – 6 of 6) sorted by relevance

/dports/math/highs/HiGHS-cfe064e/check/
H A DTestFilereader.cpp294 double dual_objective; variable
295 highs_dual.getHighsInfoValue("objective_function_value", dual_objective);
297 double diff_dual = primal_objective + dual_objective;
/dports/math/py-or-tools/or-tools-9.2/ortools/glop/
H A Dlp_solver.cc885 KahanSum dual_objective;
897 dual_objective.Add(dual_values_[row] * lower_bound);
900 dual_objective.Add(dual_values_[row] * upper_bound);
942 dual_objective.Add(optimization_sign * correction);
944 return dual_objective.Value();
/dports/math/py-or-tools/or-tools-9.2/ortools/math_opt/validators/
H A Dcallback_validator.cc175 RETURN_IF_SCALAR(barrier_stats, dual_objective, finite); in ValidateCallbackDataProto()
/dports/math/highs/HiGHS-cfe064e/src/simplex/
H A DHDual.cpp2401 double dual_objective = simplex_lp.offset_; in computeExactDualObjectiveValue() local
2415 dual_objective += simplex_info.workValue_[iCol] * exact_dual; in computeExactDualObjectiveValue()
2429 dual_objective += simplex_info.workValue_[iVar] * exact_dual; in computeExactDualObjectiveValue()
2437 return dual_objective; in computeExactDualObjectiveValue()
/dports/science/py-scipy/scipy-1.7.1/scipy/optimize/_highs/src/simplex/
H A DHDual.cpp2397 double dual_objective = simplex_lp.offset_; in computeExactDualObjectiveValue() local
2411 dual_objective += simplex_info.workValue_[iCol] * exact_dual; in computeExactDualObjectiveValue()
2425 dual_objective += simplex_info.workValue_[iVar] * exact_dual; in computeExactDualObjectiveValue()
2433 return dual_objective; in computeExactDualObjectiveValue()
/dports/math/py-or-tools/or-tools-9.2/ortools/math_opt/
H A Dcallback.proto105 optional double dual_objective = 3;