Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider the following integer-linear program which is used to decide which warehouses to open from a set of n potential warehouses, and how to
Consider the following integer-linear program which is used to decide which warehouses to open from a set of n potential warehouses, and how to assign m retail stores to the opened warehouses (for receiving supplies). Note that each retail store must be assigned to exactly one warehouse. Each warehouse can serve all the retail stores. Associ- ated with each assignment is a transportation cost cij, i = 1,...,n, j = 1,...,m, and associated with opening each warehouse is a fixed cost fi, i = 1,...,n. We seek to minimize the total cost. This is known as a location-allocation model. Let and 1, if store j is assigned to warehouse i, Xij = i=1,...,n, j = 1,...,m, 10, o/w, (1, if warehouse i is opened, Yi = i = 1,...,n. 0, o/w, Then, the location-allocation model is: min z = s.t. " " m + i=1 j=1 = 1, i=1 m xij myi j=1 + fiyi i=1 Xij = {0, 1}, i = 1,...,, j = 1,...,m, y; (0, 1), i=1,...,n. j = 1,...,m, (1) i = 1,...,n, Assume that n = 4, m = 5, and that the fixed cost for opening a warehouse is $20,000 for each of four warehouses. The transportation costs for all pairs of warehouses and stores (in thousands) are provided in the table below: Stores 1 2 3 4 5 1 10 15 20 9 40 2 12 17 15 20 10 3 18 14 10 35 16 4 9 12 33 28 19 Questions: 1. For the solution [1, 1, 1, 1] which represents that all warehouses are open, compute the total cost, z(x, y) and describe how you did so. Note that the notation for solutions that we will use uses a 1 to indicate that the corresponding warehouse is open and 0 otherwise (e.g., the solution [0,1,0,1] means that warehouses 2 and 4 are open, etc.). 2. Run Tabu Search for five iterations with 7 = 2, and starting from the solution [1, 1, 1, 1]. A neighborhood here is defined as a solution in which the status of only one warehouse is flipped, i.e., you can flip one warehouse from being open to being closed or vice versa to generate a neighbor (except if that warehouse is on the Tabu list). If a warehouse is flipped from open to closed or vice versa, that warehouse should go on the Tabu list starting from the next iteration. Use greedy selection for neighbors. Show detailed work for every iteration, then at the end of the algorithm, report the best solution found.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started