Skip to main content

Solution of optimization saved as 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.
  • Jaromił Najman
    • Gurobi Staff

    You are using the variable \(\texttt{v}\) in the \(\texttt{for}\)-loop

    for v in knapsack_model.getVars():
        total.append(v.x)

    but you have already defined and used \(\texttt{v}\) before. Using a different iterator in the above \(\texttt{for}\)-loop should solve the issue.

    for var in knapsack_model.getVars():
      total.append(var.x)

    Best regards, 
    Jaromił

    1

Post is closed for comments.