Eleonora Pribadi

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

Activity overview

Latest activity by Eleonora Pribadi
  • Eleonora Pribadi commented,

    Thank you Jaromil, Yes, I think that the z could replace the flow. but I tried, and it doesn't work.  assign is binary 1,0. so it won't make the value become 0.  I think if the flow ==0, it will ma...

  • Eleonora Pribadi commented,

    Thank you Jaromil,    the flow[warehouse,client]  it's a continuous number. I put this one in my code.  for warehouse in wl:      for client in cl:           flow[warehouse,client] = m.addVar(vtype...

  • Eleonora Pribadi created a post,

    Quadratic function to linear function in gurobi.

    Answered

    hii, I have this constraint to my model   for client in cl:      for warehouse in wl:            for types in sl:                   m.addConstr(select[warehouse,types]<= assign[warehouse,client,typ...