Skip to main content

What does "Root relaxation: interrupted" mean, and where does lower bound come from if root relaxation is interrupted?

Answered

Comments

4 comments

  • Maliheh Aramon
    Gurobi Staff Gurobi Staff

    Hi Anoop, 

    Gurobi keeps track of the current best bound while solving the root relaxation. Since the incumbent found by the heuristics was within approximately 2.5% of the current best bound before completing the root relaxation, the root relaxation was interrupted. The solution was then declared optimal with a ~2.5% gap. 

    If you leave the MIPGap parameter at its default value, the root relaxation will be solved to completion.

    Best regards,

    Maliheh

    0
  • Anoop Bhat
    First Question
    First Comment

    Does the bound come from the dual of the root relaxation?

    0
  • Maliheh Aramon
    Gurobi Staff Gurobi Staff

    Does the bound come from the dual of the root relaxation?

    Yes, algorithms such as simplex and barrier are iterative approaches that improve the bound at each iteration. The root relaxation was interrupted because the incumbent was within 2.5% of the bound at a particular iteration, for example, t. There was no reason to continue solving it to completion because Gurobi had already found an incumbent that could prove it was within your predefined MIPGap value.

    Maliheh

    0
  • Anoop Bhat
    First Question
    First Comment

    Thanks!

    0

Please sign in to leave a comment.