Skip to main content

VRP Multi-Period Model infeasible

Answered

Comments

14 comments

  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Maura,

    To simplify your IIS I will introduce the following

    le1 = e0,0,0 + e0,1,0 + e0,2,0 + e0,3,0 + e0,4,0 + e1,0,0 + e1,1,0
     + e1,2,0 + e1,3,0 + e1,4,0

    le2 = e0,0,1 + e0,1,1 + e0,2,1 + e0,3,1 + e0,4,1 + e1,0,1 + e1,1,1
     + e1,2,1 + e1,3,1 + e1,4,1

    The constraints in your IIS can then be written as

     dummy_pickup: le1 = 54
    dummy_pickup: le2 = 99
    inventory_1: le1 + I0 = 6
    inventory_2: le2 - I0 + I1 = -99

    From here it is easy to deduce that

    I0 = 6 - 54 = -48
    I1 = -99 + I0 - le2 = -246

    The problem is I1 looks to have a lower bound of 0 since it is not listed in the "free" variables (the default lower bound is 0).  But if its lower bound is 0 then it cannot have a value of -246. 

    At quick glance I'm wondering if your inventory constraints should be more like this

    M.addConstr((I[k] == I[k-1] - d[k] + gb.quicksum(e[i, j, k] for i in range (m) for j in range (n))), name= "inventory 2")

    - Riley

    0
  • Maura Nurinda
    Gurobi-versary
    Conversationalist
    First Question

    Hi Riley,

    Thank you for the heads up! Yes you are right, I did some mistake while writing the inventory constraints. After giving revision of it, it still giving infeasible result and showing this result with IIS:

    \ Model problem_copy
    \ LP format - for model browsing. Use MPS format to capture full model detail.
    Minimize
     
    Subject To
     pickup-produce: - e0,0,0 - e1,0,0 = 0
     pickup-produce: - e0,1,0 - e1,1,0 = 0
     pickup-produce: - e0,2,0 - e1,2,0 = 0
     pickup-produce: - e0,3,0 - e1,3,0 = 0
     pickup-produce: - e0,4,0 - e1,4,0 = 0
     dummy_pickup: e0,0,0 + e0,1,0 + e0,2,0 + e0,3,0 + e0,4,0 + e1,0,0 + e1,1,0
       + e1,2,0 + e1,3,0 + e1,4,0 = 54
    Bounds
     e0,0,0 free
     e0,1,0 free
     e0,2,0 free
     e0,3,0 free
     e0,4,0 free
     e1,0,0 free
     e1,1,0 free
     e1,2,0 free
     e1,3,0 free
     e1,4,0 free
    Generals
     e0,0,0 e0,1,0 e0,2,0 e0,3,0 e0,4,0 e1,0,0 e1,1,0 e1,2,0 e1,3,0 e1,4,0
    End

    I do not understand why the pickup-produce is still zero. Why does the y decision variable doesn't multiply the production qty? Could you please give me clue on that?

    Also, I still find the "e" attribute error:

    AttributeError                            Traceback (most recent call last)
    <ipython-input-7-54227bb1f309> in <module>
         12 
         13 # get attributes
    ---> 14 sol_e, sol_I, sol_y, sol_z, sol_s = M.getAttr('e', e), M.getAttr('I', I), M.getAttr('y', y), M.getAttr('z', z), M.getAttr('s', s)  # get decision variables
         15 
         16 # print_solution.printSolution(M, sol_x, sol_y, sol_z, sol_s, m, n, t, q, f, df, df_n)  # print solution
    
    src\gurobipy\model.pxi in gurobipy.gurobipy.Model.getAttr()
    
    src\gurobipy\attrutil.pxi in gurobipy.gurobipy.__getattrinfo()
    
    AttributeError: 'gurobipy.Model' object has no attribute 'e'

    Meanwhile, I have written the e variable in the decision variable function:

    "variable e"
        for i in range (m):
            for j in range (n): #nanti cek dulu n or n+1
                for k in range (t):
                    e[i, j, k] = M.addVar(vtype=gb.GRB.INTEGER, name="e%d,%d,%d" % (i, j, k))
        M.update()

    And call it in the same syntax:

    decisionVariables(M, gb, m, n, t, e, I, y, z, s)  # add decision variables to model
    objectiveFunction(M, gb, z, n, m, t, grid) # add objective function to model
    Constraints(M, gb, e, I, y, z, s, m, n, t, et, lt, sd, grid, bigM, d, P, initial_inventory, ss, df_V, tao) # add constraints to model

    M.computeIIS()
    M.write('iismodel.ilp')

    # get attributes
    sol_e, sol_I, sol_y, sol_z, sol_s = M.getAttr('e', e), M.getAttr('I', I), M.getAttr('y', y), M.getAttr('z', z), M.getAttr('s', s)  # get decision variables

    Could you please help to check on it also where the possible error will be?

    Thank you very much for the kind help

    0
  • Maura Nurinda
    Gurobi-versary
    Conversationalist
    First Question

    For giving more context,

    In the pickup-produce constraint, I would like to create a scenario where everytime the vehicles visit that node in specific time (node can only be visited once for all period and by any vehicle), it will pickup all the quantities that being produced by the node. 

    0
  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Maura,

    I would suggest running the following code, based off the pickup-produce constraint, and seeing if it is what you expect it to be

    for k in range (t):
    for j in range (n):
      print(f"k={k}", f"j={j}", f"P[k]={P[k]}", f"empty LHS expected={P[k]==0 or m==0}")

    - Riley

    0
  • Maura Nurinda
    Gurobi-versary
    Conversationalist
    First Question

    Hi Riley, 

    Thank you for your help, after changing the pickup-produce constraint as you suggested, the model is not infeasible anymore. But I still have this difficulty in the attribute e error. Could you help to check on this?

    AttributeError                            Traceback (most recent call last)
    <ipython-input-20-df5f488c5933> in <module>
         12 
         13 # get attributes
    ---> 14 sol_e, sol_I, sol_y, sol_z, sol_s = M.getAttr('e', e), M.getAttr('I', I), M.getAttr('y', y), M.getAttr('z', z), M.getAttr('s', s)  # get decision variables
         15 
         16 # print_solution.printSolution(M, sol_x, sol_y, sol_z, sol_s, m, n, t, q, f, df, df_n)  # print solution
    
    src\gurobipy\model.pxi in gurobipy.gurobipy.Model.getAttr()
    
    src\gurobipy\attrutil.pxi in gurobipy.gurobipy.__getattrinfo()
    
    AttributeError: 'gurobipy.Model' object has no attribute 'e'

    As I mentioned in the earlier message, I have define the attribute 'e' as the decision variable. Could you help to check where the possible error is?

    Thank you very much. Looking forward for your response

    0
  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Maura,

    Solution values are accessed from the variables, not the model object, so not sure what has led you down this path.  If you have a variable v then you can obtain its value in the optimal solution using v.X

    What is the "e" parameter that you are passing into your function?  If it is a dictionary then you could create another dictionary of solution values like this

    sol_e = {k:v.X for k,v in e.items()}

    or to create a dictionary of all variables:

    sol = {v.VarName:v.X for v in M.getVars()}


    - Riley

    1
  • Maura Nurinda
    Gurobi-versary
    Conversationalist
    First Question

    Hi Riley, 

    If it's like that, so what's the '.X' define in the code?

    Also, the constraint that you created previously for decision variable "e" is not creating the boundaries that need to be fulfilled for the model.

    The expected coding is to fulfill this constraint:

     So I code:

    for j in range (n):
      M.addConstr(((gb.quicksum(gb.quicksum(e[i, j, k] for i in range (m)) for k in range (t))) == P[j]), name = "pickup qty = production")
    M.update
        
    for i in range (m):
      for j in range (n):
           for k in range (t):
    M.update

    Then it still shows the result is infeasible, and this is that shows in the IIS result

    Subject To
     pickup_qty_=_production: e0,4,0 + e0,4,1 + e1,4,0 + e1,4,1 = 80
     pickup_qty_definition: - e0,4,0 = 0
     pickup_qty_definition: 30 y0,4,1 - e0,4,1 = 0
     pickup_qty_definition: - e1,4,0 = 0
     pickup_qty_definition: 30 y1,4,1 - e1,4,1 = 0
    Bounds
     e0,4,0 free
     e0,4,1 free
     e1,4,0 free
     e1,4,1 free
    Binaries
     y0,4,1 y1,4,1
    Generals
     e0,4,0 e0,4,1 e1,4,0 e1,4,1
    End

    Could you please help in this issue again? But to make sure the constraint is fulfilled, as the previous constraint doesn't give the optimum result.

    Thank you very much

    0
  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Maura,

    The "X" attribute of a variable is its value in the solution.  You can find a list of all attributes available here.

    If you take the pickup_qty_=_production constraint in the IIS and use the 4 pickup_qty_definition constraints underneath it to perform substitutions you can arrive at the following equation:

    30 y0,4,1 + 30 y1,4,1 = 80

    We obviously can't satisfy this when the y variables are binary, which should give you a hint as to why the model is infeasible.  I can't see a definition for the pickup_qty_definition constraints in your code and so it is hard to give more insight than this

    Also, the constraint that you created previously for decision variable "e" is not creating the boundaries that need to be fulfilled for the model.

    I'm not sure what this means, but let's address the infeasibility first then return to this.

    - Riley

    0
  • Maura Nurinda
    Gurobi-versary
    Conversationalist
    First Question

    Hi Riley, noted. Thank you very much for your help on this, I can understand where the error within my code. After giving several revisions, the code looks like this. I also put several constraint that I didn't put before which related to variable "e".

        for j in range (n):
            M.addConstr(((gb.quicksum(gb.quicksum(e[i, j, k] for i in range (m)) for k in range (t))) == P[j]), name = "pickup qty = production")
        M.update
        
        for i in range (m):
            for j in range (n):
                for k in range (t):
                    M.addConstr((y[i, j, k] * P[k] == e[i, j, k]), name= "pickup qty definition")
        M.update
        
        "dummy pickup minimal qty for checking the model" #--> ada update
        for k in range (t):
            M.addConstr((gb.quicksum(gb.quicksum(e[i, j, k] for i in range (m)) for j in range (n)) >= d[k]), name="dummy pickup")
        M.update()
        
        '''constraint 5.18: vehicles' maximum capacity''' 
        for i in range(m):
            for k in range(t):
                M.addConstr((gb.quicksum(e[i, j, k] for j in range (n)) <= df_V["C"][i]), name="5.18")
        M.update()

    Then I checked my solution and get this result in IIS. 

    Subject To
     C.5.9: y1,0,0 = 1
     C.5.9: y1,0,1 = 1
     pickup_qty_=_production: e0,0,0 + e0,0,1 + e1,0,0 + e1,0,1 = 30
     pickup_qty_definition: 30 y0,0,0 - e0,0,0 = 0
     pickup_qty_definition: 30 y0,0,1 - e0,0,1 = 0
     pickup_qty_definition: 30 y1,0,0 - e1,0,0 = 0
     pickup_qty_definition: 30 y1,0,1 - e1,0,1 = 0
    Bounds
     e0,0,0 free
     e0,0,1 free
     e1,0,0 free
     e1,0,1 free
    Binaries
     y0,0,0 y0,0,1 y1,0,0 y1,0,1
    Generals
     e0,0,0 e0,0,1 e1,0,0 e1,0,1
    End

    For context, this is C.5.9. Each period, the vehicle needs to start from depot (node j=0) to assigned node (but still, each node can only be visited once in all period). Variable 'y' consider depot in the decision variable, hence 0 is depot. Variable 'e' doesn't consider depot, hence 0 is the 1st node that needs to be visited.

        '''constraint 5.9: every vehicle start from depot'''
        for i in range(m):
            for k in range(t):
                M.addConstr((y[i, 0, k] == 1), name="C.5.9")  # j = 0 for depot location
      M.update()

    For your information:

    • i = index for vehicle
    • j = index for nodes
    • k = index for time

    Could you help to assist with the possible error cause? 

    Thank you very much, very appreciate it.

    0
  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Maura,

    Can you explain to me exactly what it means when the variable y[a,b,c] = 1?  Something to do with scheduling vehicles?

    - Riley

     

    0
  • Maura Nurinda
    Gurobi-versary
    Conversationalist
    First Question

    Yes, it shows the schedule for that nodes and vehicle in specific timing period. If it's giving y[i,j,k] = 1, it means that vehicle i is visiting node j in period k. Hence, the variable 'e' shows the pickup qty that needs to be taken in every visit, in this case, all the qty that is produced by node j. What limits the schedule will be the capacity of the vehicle (because it's a single visit) and the time window. 

    0
  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Maura,

    In that case these constraints:

        '''constraint 5.9: every vehicle start from depot'''
        for i in range(m):
            for k in range(t):
                M.addConstr((y[i, 0, k] == 1), name="C.5.9")  # j = 0 for depot location

    are saying that every vehicle should visit the depot in every period.  This surely is incorrect, and likely one source of your infeasibility.

    - Riley

    0
  • Maura Nurinda
    Gurobi-versary
    Conversationalist
    First Question

    Ah i see, i think that's the error comes from. So I have set of n indexed with j. The length is 6, with 0 is depot and 1-5 is the node that needs to be visited. Since generally we use lots of 1-5 data than 0-5, I define n as n-1.

    In variable 'e' it uses 

    for j in range (n):

    Hence it will use the data 1-5 only. So the e[0,0,0] with j=0 will refer to the 1st node that needs to be visited.

    In variable 'y' it uses

    for j in range (n+1):

    The context in here is to also schedule the depot. So, the y[0,0,0] with j=0 will refer to the depot (the snippet that you just sent is meant to define that depot is always visited daily, but the other nodes are only visited once in all period).

    I think I get the error from here where the code can't define which '0' should it refer to. Could you help to give me suggestion regarding this matter? To give distinction when trying to call 0-5 and 1-5? 

    Thank you!

    0
  • Riley Clement
    Gurobi Staff Gurobi Staff

    Hi Maura,

    To get an iterator for 0-5 you use range(6).  To get an iterator from 1-5 you can use range(1,6).  If you want the integer sequence a, a+1, ..., b-1, b then you can use range(a, b+1).

    When the sequence is small you can also just explicitly write it, eg

    for i in (1,2,3,4,5):
    ...

    - Riley

    0

Please sign in to leave a comment.