1 / 3

Knowledge Inference Rules in Prolog

Learn how to use Prolog for constraint programming, expert systems, and building knowledge bases. Understand inference engines and rule structures to enhance your skills. Access a comprehensive guide on Prolog rules at the provided link.

trey
Télécharger la présentation

Knowledge Inference Rules in Prolog

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. human(david). human(john). human(suzie). human(eliza). man(david). man(john). woman(suzie). woman(eliza). parent(david, john). parent(john, eliza). parent(suzie, eliza). father(X,Y) :- parent(X,Y), man(X). mother(X,Y) :- parent(X,Y), woman(X). ?- father(X, eliza). X = john ; http://en.wikibooks.org/wiki/Prolog/Rules • Constraint programming • Expert systems • Prolog • Inference engine • Knowledge base knowledge rules inference

More Related