Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem # 2 Consider the following TSP distance data between six nodes. The goal is to find shortest closed tour. ( [ , 1 5
Problem #
Consider the following TSP distance data between six nodes. The goal is to find shortest closed tour.
a Solve the problem using nearest neighbor heuristic.
b Solve the problem using reversal heuristic. Assume the starting tour is Termination criteria: either encountering a local optimal solution, or reaching three iterations.
c Identify an upper bound of the TSP
d Identify a lower bound for the TSP
e Find the solution of TSP using B & B approach. At each node, solve the corresponding assignment problem using the Hungarian method Use the following strategy:
Node Selection: When there are several active nodes, select the node with best bound.
Branch Selection: When there are several open branches, pick the branch, whose variable corresponds to longest distance.
Subtour Selection: At a given node, if there are several subtours, pick the subtour with smallest cardinality. Break ties arbitrarily.
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