CIS 554 Prolog 3: Solving a maze
Fall 2013, David Matuszek
Your third and final Prolog assignment is to write a program to solve a maze.
Consult a file maze.pl, containing a maze. Here is a sample file:
|
which represents the following maze: |
|
Your task is to write a predicate solve(From, To, Path) which, given locations From and To, finds a Path going from From to To. From and To are given as two element lists, and Path should be a list of two-element lists. The first element of Path should be From, and the last element should be To. Moves can be made horizontally or vertically, but not diagonally.
For example, solve([3,2], [2,6], [[3,2], [3,3], [2,3], [1,3], [1,4], [1,5], [1,6], [2,6]]).
Print the solution as a list, and also as a text drawing, for example, as
1 2 3 4 5 6 7 8 9 +-----------------+ 1 |. . * * * * . x .| 2 |x x * x x * . . .| 3 |. * * x . . x . x| 4 |. . . x . . x x x| 5 |. x . . . . . . .| +-----------------+
You do not have to find the shortest path (although that would be nice), nor does your text drawing have to look exactly like mine; but it should be possible to see the path.
Please put your solution on a file named maze-solver.pl.
Wednesday, September 18, before 6:00am. Please turn in to Canvas your maze-solver.pl file. As it is only one file, there is no need to zip it. We will test your program with our own maze.
Late penalties: There will be a 10 point penalty (out of 100 points) for programs between one minute and one week late, and a 25 point penalty for programs later than one week. At some unspecified time after one week we will stop accepting assignments.
I do not, under any circumstances, accept assignments submitted by email.