Question: Required Tasks ( 1 ) For Instance 1 , consider Scenario 1 where ( m = 2 ) . The goal is to
Required Tasks
For Instance consider Scenario where m The goal is to find pairs of workers that maximize the total synergy. Formulate the problem as an integer programming model. Define the decision variables and constraints clearly. Solve the model using AMPL with dataset.dat file. What is the optimal partition pairs of workers and what is the corresponding objective function value?
For Instance consider Scenario where m The goal is to form teams of workers, each consisting of workers, to maximize the total synergy among team members. Formulate the problem as an integer programming model. Define the decislon variables and constraints clearly. Solve the model using AMPL with dataset. dat file. What is the optimal partition teams, each consisting of workers and what is the corresponding objective function value?
For Instance you will solve the same optimization problems as in and but using the
dataset hard.dat file.
Scenario : m The goal is to find pairs of workers that maximize the total synergy.
You
should be able to get an optimal solution in a reasonable time.
Scenario : m The goal is to form teams of workers, each consisting of workers, to maximize the total synergy among team members.If the code runs for more than minutes, interrupt it and report the best solution you found. Summarize your findings.
Solving for Scenario m in may take significantly more time than for m One possible approach to address this problem is to use the optimal pairs derived from Scenario m and pair those pairs in a second step. This heuristic, called DoublePairing Algorithm, works as follows:
a First, solve Scenario optimally, which will yield pairs first pairing
b Next, we will optimally pair these pairs. Each pair consists of two workers, and when two pairs are combined, we have four workers. For instance, if workers and form pair A and workers and form pair B merging pairs A and B assigns workers and to the same team. The synergy between two pairs eg between pair A and pair B is defined as the sum of all relevant synergy values:
c A Bc c c c c c
This creates an instance with "workers" where each "worker" corresponds to a pair and updated synergy values second pairing
c Finally, solve the problem in Scenario for the pairs. This will result in pairs of pairs.
Based on these pairs of pairs, reconstruct the teams of workers. Implement DoublePairing Algorithm in AMPL, which may require more than two mod'files and new dat' file. Report the objective function value from the output of the algorithm.
Discuss what this solution suggests about the optimal value for the original problem with n and m
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
