We will discuss this assignment in Monday's class. Please be prepared to play your part in the discussion. You are to hand in this assignment at the end of the lecture.
~cs322/cilog/
)
contains a CILog axiomatization for the solution to assignment 1, with
denotations and tap positions given
below:
?flow(d1).
CILog always selects the leftmost conjunct to resolve, and always chooses the topmost clause that leads to a solution.attends(P,D) <- proctors_exam(P,C) & exam(C,D). proctors_exam(P,C) <- instructor(P,C). proctors_exam(P,C) <- teaching_assistant(P,C). exam(cs322,oct22). exam(cs322,dec24). instructor(david,cs322). teaching_assistant(rita,cs322). teaching_assistant(leslie,cs322).
?attends(W,T).Specify which clause was chosen at each stage.