Home
last modified time | relevance | path

Searched refs:best_objective_bound (Results 1 – 20 of 20) sorted by relevance

/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/appsi/solvers/
H A Dcplex.py278 results.best_objective_bound = None
283 results.best_objective_bound = cpxprob.solution.get_objective_value()
286 results.best_objective_bound = cpxprob.solution.MIP.get_best_objective()
290 results.best_objective_bound = -math.inf
292 results.best_objective_bound = math.inf
H A Dipopt.py424 results.best_objective_bound = None
427 results.best_objective_bound = -math.inf
429 results.best_objective_bound = math.inf
H A Dcbc.py386 results.best_objective_bound = None
389 results.best_objective_bound = -math.inf
391 results.best_objective_bound = math.inf
H A Dgurobi.py729 results.best_objective_bound = None
737 results.best_objective_bound = gprob.ObjVal
739 results.best_objective_bound = gprob.ObjBound
742 results.best_objective_bound = -math.inf
744 results.best_objective_bound = math.inf
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/appsi/solvers/tests/
H A Dtest_persistent_solvers.py143 self.assertTrue(res.best_objective_bound <= m.y.value)
175 self.assertTrue(res.best_objective_bound <= m.y.value)
208 self.assertTrue(res.best_objective_bound <= m.y.value)
237 self.assertEqual(res.best_objective_bound, None)
264 self.assertTrue(res.best_objective_bound <= m.y.value)
275 self.assertTrue(res.best_objective_bound <= m.y.value)
287 self.assertTrue(res.best_objective_bound <= m.y.value)
474 self.assertTrue(res.best_objective_bound <= m.y.value + 1e-12)
482 self.assertTrue(res.best_objective_bound >= m.y.value - 1e-12)
H A Dtest_gurobi_persistent.py59 self.assertAlmostEqual(x + y, res.best_objective_bound)
/dports/math/py-or-tools/or-tools-9.2/examples/tests/
H A Dpywraplp_test.py61 self.assertEqual(solution.best_objective_bound, 3.0)
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/appsi/
H A Dbase.py327 self.best_objective_bound: Optional[float] = None
333 s += 'best_objective_bound: ' + str(self.best_objective_bound)
1104 legacy_results.problem.lower_bound = results.best_objective_bound
1107 legacy_results.problem.upper_bound = results.best_objective_bound
1109 if results.best_feasible_objective is not None and results.best_objective_bound is not None:
1110 legacy_soln.gap = abs(results.best_feasible_objective - results.best_objective_bound)
/dports/math/py-or-tools/or-tools-9.2/ortools/linear_solver/
H A Dgurobi_proto_solver.cc531 double best_objective_bound = 0; in GurobiSolveProto() local
533 &best_objective_bound); in GurobiSolveProto()
540 response.set_best_objective_bound(best_objective_bound); in GurobiSolveProto()
H A Dsat_proto_solver.cc333 response.set_best_objective_bound(cp_response.best_objective_bound()); in SatSolveProto()
H A Dlinear_solver.cc264 return interface_->best_objective_bound(); in BestBound()
831 response->set_best_objective_bound(interface_->best_objective_bound()); in FillSolutionResponseProto()
1212 interface_->best_objective_bound_ = response.best_objective_bound(); in LoadSolutionFromProto()
1881 double MPSolverInterface::best_objective_bound() const { in best_objective_bound() function in operations_research::MPSolverInterface
H A Dlinear_solver.proto506 // 'best_objective_bound' fields of the MPSolutionResponse will give an
596 // or FEASIBLE. In the former case, best_objective_bound should be equal to
598 optional double best_objective_bound = 5; field
H A Dlinear_solver.h1658 double best_objective_bound() const;
/dports/math/py-or-tools/or-tools-9.2/ortools/sat/
H A Dswig_helper.h70 double BestObjectiveBound() const { return response_.best_objective_bound(); } in BestObjectiveBound()
H A Dcp_model_solver.cc454 response.best_objective_bound());
3193 response->best_objective_bound(),
3195 " delta: ", response->best_objective_bound() - lb);
3212 response->best_objective_bound());
H A Dsynchronization.cc65 solution.rank = -response.best_objective_bound(); in NewRelaxationSolution()
H A Dcp_model.proto613 // best_objective_bound will be computed correctly. So at the end of the solve
723 double best_objective_bound = 4; field
/dports/math/py-or-tools/or-tools-9.2/ortools/math_opt/solvers/
H A Dcp_sat_solver.cc207 response.best_objective_bound()); in Solve()
/dports/math/py-or-tools/or-tools-9.2/ortools/flatzinc/
H A Dcp_model_fz_solver.cc1103 "%%%mzn-stat: objectiveBound=", response.best_objective_bound()); in OutputFlatzincStats()
/dports/math/py-or-tools/or-tools-9.2/ortools/sat/python/
H A Dcp_model.py2173 return self.__solution.best_objective_bound