Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Lab File

Artificial Intelligence Course ID: CSSE # 509

Submitted To: Sir Shoaib. Made By: Mohammad Yawar Sohail

INDEX
S. No Date Subject Remarks

Lab 1
Draw a semantic network representing the following facts, and implement following fact using Prolog: Ships are things. Carriers are ships. Ships have a position. Ships have a crew. Carriers have planes. Planes are things. A crew consists of people. People are things. Prolog Code: are(ships,things). are(carriers,ships). have(ships,a-position). have(ships,a-crew). have(carriers,planes). are(planes,things). consists-of(a-crew,people). are(people,things). Semantic Network:
have ships are have are a-crew things are people carriers have planes are

a-position

Consist-of

You might also like