Céline Meister

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

Posts

Recent activity by Céline Meister Recent activity Votes
  • sum of two variables integer

    Answered

    I have the variables x and y. x = pd.Series(m4.addVars(stocks), index=stocks)y = pd.Series(m4.addVars(stocks), index=stocks) x and y can be non-integer each, but x + y should be integer. I have no ...

  • How can i adjust a parameter if there was no improvement after x iterations?

    Answered

    I have the following (working) model, which i have to improve: timeLimit=200   numVarAct=int(0.5*n)numIterations=100 mdl.params.timeLimit=30  tm=time.time()tm2=time.time() while tm2-tm<timeLimit:  ...