Table of Contents

TASK 1 - Path Planning

Create an algorithm which finds a path on the road graph of United Kingdom (UK) between two nodes (intersections).

Assignment

Input:

Output:

Quality criteria, listed in descending priority:

Grading

  1. Algorithm fulfills the assignment completely
  2. The path is correct, i.e., leads from origin to destination, the path is connected, i.e., two subsequent edges have a common node and the edges are sorted correctly. [+1b]
  3. The found path minimizes transport time between initial and goal state [+3b]
  4. The number of expanded nodes is minimal [+0-4b]

Submission

Implementation details

Some code you can use

Example results

Solution 1

Solution 2

Solution 3