Download presentation
Presentation is loading. Please wait.
1
UNIVERSITY OF SOUTH CAROLINA Department of Computer Science and Engineering Using Definite Knowledge Notes for Ch.3 of Poole et al. CSCE 580 Marco Valtorta
2
UNIVERSITY OF SOUTH CAROLINA Department of Computer Science and Engineering Case Study: University Rules This is an example of representing regulatory knowledge. –(Another great example: Sergot, M.J. et al., “The British Nationality Act as a Logic Program.” CACM, 29, 5 (may 1986), 370-386.) DB of relations about the university (univ.pl) Rules about satisfying degree requirements (univ.pl) Lists are used (lists.pl)
3
UNIVERSITY OF SOUTH CAROLINA Department of Computer Science and Engineering Some facts grade(St, Course, Mark) dept(Dept,Fac) – We would say College, not Faculty course(Course, Dept, Level) core_courses(Dept,CC, MinPass) –CC is a list
4
UNIVERSITY OF SOUTH CAROLINA Department of Computer Science and Engineering A Rule satisfied_degree_requirements(St,Dept) <- covers_core_courses(St,Dept) & dept(Dept, Fac) & satisfies_faculty_req(St, Fac) & fulfilled_electives(St, Dept) & enough_units(St, Dept).
5
UNIVERSITY OF SOUTH CAROLINA Department of Computer Science and Engineering More Rules Covers_core_courses(St, Dept) <- core_courses(dept, CC, MinPass) & passed_each(CC, St, MinPass)
6
UNIVERSITY OF SOUTH CAROLINA Department of Computer Science and Engineering More Rules passed(St, C, MinPass) <- grade(St, C, Gr) & Gr >= MinPass. A recursive rule that traverses a list. passed_each([], S, M). passed_each([C|R], St, MinPass) <- passed(St, C, MinPass) & passed_each(R, St, MinPass).
7
UNIVERSITY OF SOUTH CAROLINA Department of Computer Science and Engineering More Rules passed_one(CL, St, MinPass) <- member(C, CL) & passed(St, C, MinPass).
Similar presentations
© 2024 SlidePlayer.com Inc.
All rights reserved.