Skip to main content

Warm starting Gurobi's binary variables

Answered

Comments

5 comments

  • Marika Karbstein
    Gurobi Staff Gurobi Staff

    There are two options in Gurobi: providing a MIP start or defining variable hints:

    1. MIP start: A MIP start can be provided either by using the Start variable attribute or by loading a MIP start (.mst) or a solution (.sol) file. Gurobi will then use this information to generate a feasible start solution. It is not necessary to provide a value for each variable. If you define values for a subset of the binary and integer variables, Gurobi will try to compute feasible values for the remaining variables.
      In your case, if you know which 999 variables are the correct ones, you could set only values for these variables.
    2. Variable hints: These values guide the solver throughout the solution process. If you know that a variable is likely to have a particular value in the solution, you can set the variable hint.
      Gurobi considers these values in its heuristics and when deciding which node to process. 

    See also How do I use MIP starts? for more information.

    0
  • Richard Li
    Gurobi-versary
    Conversationalist
    First Question

    Thanks Marika. Can you explain what is happening algorithmically for a few of the heuristics and how they interact exactly with the warm start variables? I understand the overall algorithm is proprietary but perhaps you can share a few out of the many heuristics. It makes it hard to use Gurobi in academic research if we cannot explain how our warm starting method interacts with Gurobi’s variable hints on a technical level.

    0
  • Marika Karbstein
    Gurobi Staff Gurobi Staff

    In the Heuristics when variables need to be sorted VarHintPri is used and VarHintVal gives the direction for the fixing.

    0
  • Richard Li
    Gurobi-versary
    Conversationalist
    First Question

    Yes, but what type of heuristics are these? I saw a reference in a webinar that one heuristic is "large neighborhood search". What else is there?

    0
  • Marika Karbstein
    Gurobi Staff Gurobi Staff

    If there are variables hints available then two additional heuristics are called. One is a kind of diving heuristic and the other a fixing heuristic that creates and solves a sub-MIP.

    All other Gurobi heuristics are not influenced by the variable hints.

    0

Please sign in to leave a comment.