CSE 341 -- Programming LanguagesAutumn 2001 |
Department of Computer Science and Engineering, University of WashingtonSteve Tanimoto (instructor) |
Assignment 6Version 1.0 of November 22, with turn-in instructions added Nov. 28. (Subject to Change) |
Prolog PrimerDue date and time: Thursday, November 29, 2001 (in sections).Turn-in instructions: hard copy. Print out the file(s) of Prolog code, and then do some kind of screen capture of your session and print that, too. One way to capture the screen under Windows is to hold the shift key and press the Print Screen key; that puts a screen image on the clipboard. From there you can start Paint (in the Accessories folder on the Start menu), and paste the screen image into a Paint image. To crop that image in Paint, select the area you are interested in and then Copy it to the clipboard; start a new image and paste the saved selection into the new image. If necessary, you can make the new image smaller by going to the Image menu, Attributes item, and putting in new width and height values. Finally, print the image or save it to a file to include in, say, a Word document if you wish to prepare your assignment in Word. |
Instructions:
Read the following sections of Paul Brna's online book
Prolog Programming: A First Course, which is linked
from our syllabus page: Introduction; Knowledge Representation;
Prolog's Search Strategy; Unification, Recursion and Lists;
The Box Model of Execution. (Note: Other parts of the book
may be helpful in performing the programming part of the assignment,
but they will not be covered on the quiz or final.)
Part A: Warmup
Code the logical reasoning problem from Assignment 3 in Prolog
so that it can easily be solved by Prolog's built-in backtracking
search mechanism. (You do not need to handle the translation
from English to logic, so just manually represent the problem
as a collection of Horn clauses.)
Part B: Challenge
Choose one of the following and implement it in Prolog.
1. A Seattle restaurant adviser.
2. An advisor for non-CSE elective courses for CS and CE majors.
3. An advisor for Western-Washington area sports facilities,
such as (choose one): ski areas, hiking trails, boating/kayaking areas,
swimming/diving areas, camping areas, fishing areas or
river sports locations.
4. A music recommendation system.
In any case, your system must have at least 5 rules and
10 facts. Each rule must use at least one variable.
You must use at least 5 different predicates, and at least
one of them must be a two-place predicate.
Give at least two example sessions with your advising program.
The first example should be quite simple, showing the form of
a simple query and answer. The second should involve a more
complicated set of considerations or result in multiple
recommendations.
Hints for using SWI-PROLOG: SWI-PROLOG is available in the UW CSE PC lab (Sieg 232). You can also download it using a link from our syllabus page. Edit your Prolog program in a separate file, with the text editor of your choice. Make sure this file is located in the folder where the Prolog interpreter will look when loading files. You specify this folder at installation time. To load a program named myprog.pl, you can type in the query, consult(myprog.pl). Alternatively, you can type the query [myprog]. The query must end with a period, like any Prolog Horn clause. If you want to type a rule or a fact directory into a Prolog session, you can do it using consult(user) or assert. For example to enter the fact mother(mary, john) you would type assert(mother(mary, john)). For additional information see the documentation that comes with the SWI-PROLOG download.
Individual Work: This assignment
should be performed individually (not in groups).