[index]->ai

Artificial Intelligence

This site provides some solutions for standard problems of AI. (arisen in the course Methods of Artificial Intelligence (winter term 2002/2003) )

2nd Assignment

ai-2.pdf

1st Programming Assignment

Task:
Implement a problem independent search algorithm in PROLOG that is parameterized for the following search strategies: DFS, BFS, A* (with OPEN and CLOSED list and cycle-check), hill-climbing, and uniform cost search.

Here are two programs that solve this task. They are computing exactly the same set of solutions and are only differing in efficiency.

search1.pl
search2.pl

Subquestions