-
I see two options named In particular, I'd like to know which of the two (if any) is equivalent to Gurobi's cutoff, ie, pruning nodes with a dual bound worse than the given value. I'm guessing that But what would |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
When the dual simplex objective (for a dual feasible point) reaches the The |
Beta Was this translation helpful? Give feedback.
When the dual simplex objective (for a dual feasible point) reaches the
objective bound
then the algorithm terminates. There is a guarantee that the optimal (primal) objective value can be no better thanobjective bound
. Indeed, in general, it will be worse than this value.The
objective_target
is an (unimplemented) option for the primal simplex solver. What it will do is stop the primal simplex solver when the primal objective (for a primal feasible point) reaches theobjective_target
. There is a guarantee that the optimal (primal) objective value is at least theobjective target
. Unlike theobjective_bound
, theobjective_target
is a value that's actually attained. Hence the different na…