メインコンテンツへスキップ

setObjective() not updating when called on GRBModel object

回答済み

コメント

2件のコメント

  • Jaromił Najman
    Gurobi Staff Gurobi Staff

    You have to call the update method first before querying any model objects.

    obj = mod.setObjective(x+y, GRB.MAXIMIZE)
    mod.update()
    print(mod.getObjective())

    This is due to the lazy update mechanism.

    0
  • Sam Garvin
    Conversationalist
    First Question

    Thank you for your prompt response!

    0

サインインしてコメントを残してください。