;;; -*- Mode: Lisp; Syntax: Common-Lisp; -*- ;;; Copyright 2007 by Robert St. Amant. ;;; To download the code for simple-POP and simple-GP, visit ;;; . ;;; This software is released under the license described by Peter ;;; Norvig: . If you find this ;;; software useful, please send email to . ;;; ============================== (in-package "COMMON-LISP-USER") ;;; ============================== (defvar *simple-planners-package-name* "CL-USER") ;;; ============================== ;;; Among other things, the following file loads gps, search, and unify. (requires "paip-compatibility") ;;; ============================== ;;; Partial-order planning and GraphPlan code. (requires "simple-utilities") ; macros and utility functions (requires "simple-pddl-processing") ; domain and problem management (requires "simple-problems") ; problem definitions (requires "paip-problems") ; PAIP-specific problem definitions (requires "simple-data-structures") ; planning data structures (requires "simple-planners") ; domain and problem management (requires "simple-pop") ; planning with propositional actions (requires "simple-pop-with-bindings") ; planning with first-order actions (requires "simple-gp") ; GraphPlan ;;; ============================== ;;; EOF