Skip to main content

infeasible nodes in the solution algorithm

Answered

Comments

2 comments

  • Marika Karbstein
    Gurobi Staff Gurobi Staff

    You can find some information about the log in the Gurobi Reference Manual, see MIP Logging:

    The Current Node section provides information on the specific node that was explored at that point in the branch-and-cut tree. It shows the objective of the associated relaxation..

    And a specific node in the branch-and-cut-tree can indeed be infeasible, so nothing to worry about here.

    However, you should check your solution. Gurobi prints warnings about a constraint violation of 1 and a general constraint violation of 2.8593e-03. You could use, e.g., Model.printQuality() to get information about the solution quality containing the constraint name of the most violated constraint.
    The second warning also gives a hint to check (and improve) variable bounds. If there are no or very large bounds on the variables, the approximation of general constraints can be poor.

    0
  • Iason Liagkas
    Detective
    Gurobi-versary
    Thought Leader

    Thanks Marika

    0

Please sign in to leave a comment.