Jonas Grundler

  • Gurobi-versary
  • Conversationalist
  • First Question
  • Total activity 11
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 2

Posts

Recent activity by Jonas Grundler Recent activity Votes
  • Adding new variables to existing model

    Answered

    Dear all, I am working on the following model: m = Model('Test')first_set = list(range(3))second_set = list(range(3))x = m.addVars(first_set, second_set, vtype=GRB.CONTINUOUS) #9y = m.addVars(secon...

  • Accessing objective terms

    Answered

    Dear all, I am using a Python function which returns 'm', a gurobi.Model object. In a next step, I call m.optimize(). Afterwards, I can use m.objval, m.getVars(), etc. to access my results. However...