Artificial Intelligence: A Modern Approach

AIMA Python file: planning.py

"""Planning (Chapters 11-12)
"""

from __future__ import generators
from utils import *
import agents
import math, random, sys, time, bisect, string

AI: A Modern Approach by Stuart Russell and Peter NorvigModified: Jul 18, 2005