Susana Carmona

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

Posts

Recent activity by Susana Carmona Recent activity Votes
  • Stop the program while running

    Answered

    Hi everyone, I want to stop my program when is running. I want to stop it after 25 iterations if the solution doesn't change. How could I do it? Thanks!

  • Sequence tool restriction

    Answered

    Hello everyone, I have this data: m = gp.Model('model')jobs, tool = gp.multidict({('A'): 1,('B'): 1,('C'): 2,('D'): 3,}) Where A,B,C,D are the jobs and 1,2,3 are the tools used for every a job.   ...

  • How can I create a multidict with data from excel file?

    Answered

    Hello everyone, I started computing data by myself like this: jobs, endate , qty, pph, setup, weight = gp.multidict({ ('1'): [date(2022,1,5), 7111, 160, 10, 5], ('2'): [date(2022,1,5), 2801, 180, ...

  • Infeasibility while adding a constraint

    Awaiting user input

    Hello everyone,   I have to add these two constraints in my code:        When I add the constraint (4) to the code, the model becomes infeasible because comes into conflict with constraint (2). ...