AIMA Python Code Summary

Overview of the AIMA Python Project

ChapterModuleLinesDescription
1-2agents457Implement Agents and Environments (Chapters 1-2).
3-6search824Search (Chapters 3-6)
5csp432CSP (Constraint Satisfaction Problems) problems and solvers. (Chapter 5).
7,9logic319Representations and Inference for Logic (Chapters 7,9)
18-21learning585Learn to estimate functions from examples. (Chapters 18-21)
22chartparse104Will be a chartparser and related NLP tools. Not at all working yet.
 docex233A framework for running unit test examples, written in docstrings.
 py2html124Pretty-print Python code to colorized, hyperlinked html.
 utils680Provide some widely useful utilities. Safe for "from utils import *".
3758


# Copyright (c) 2002, Peter Norvig
# See also AIMA: Python Code; Python.org: Tutorial, Language Ref, Libraries.