Skip to main content

What does status 11 INTERRUPTED mean?

Awaiting user input

Comments

2 comments

  • Eli Towle
    Gurobi Staff Gurobi Staff

    Gurobi could terminate with an \(\texttt{INTERRUPTED}\) status if:

    1. The code calls a function that terminates a solve. For example, a Python project might call Model.terminate() (typically done in a callback) or Model.cbStopOneMultiObj() (must be done in a callback).
    2. The Gurobi process receives the interrupt signal (SIGINT). This most commonly occurs when the solve is interrupted manually with Ctrl-C, though the signal could also be sent programmatically.

    In what environment are you using Gurobi? Does your code terminate the solve from a callback function?

    1
  • Zhongkui Ma
    Gurobi-versary
    First Comment
    First Question

    Thank you very much for the answer, I'm using Python. I think I have figured out this question.

    0

Please sign in to leave a comment.