Skip to main content

transforming binary gurobi tupledict into np.array

Answered

Comments

2 comments

  • Official comment
    Simranjit Kaur
    • Gurobi Staff
    This post is more than three years old. Some information may not be up to date. For current information, please check the Gurobi Documentation or Knowledge Base. If you need more help, please create a new post in the community forum, or try Gurobot, our chatbot interface offering instant, expert-level support.
  • Simon Bowly
    • Gurobi Staff

    Hi Lukas,

    You could write the solution values from the tupledict into a numpy array like so:

    arr = np.zeros((M, N))
    for i in range(M):
    for j in range(N):
    arr[i,j] = x[i,j].X

    But you may find it more convenient to use addMVar instead of addVars. If x is instead stored as an MVar, then retrieving the solution using x.X directly gives you the numpy array you are looking for.

    Best regards,
    Simon

    0

Post is closed for comments.