next up previous
Next: Mental Situations Up: THE REASONING STRATEGY Previous: THE REASONING STRATEGY

Goal Stack Planning

The reasoning strategy used by STRIPS is goal stack planning [13]. In goal stack planning, the problem solver makes use of a goal stack GS that contains both subgoals and actions that have been proposed to satisfy those subgoals, and a database DB of logical formulas describing the current situation. The algorithm of goal stack planning can be summarized as follows.

Repeat the cycle below until the goal stack is empty. Otherwise, return tex2html_wrap_inline472 -the plan associated with the database describing the current situation- as a solution.

  1. Replace the top subgoal of GS by an appropriate action, and add its precondition to the top of GS.
  2. Until the top element of GS is a subgoal that cannot be proved from the formulas in DB, do the following.

    1. If the top element of GS is a subgoal that can be proved from the formulas in DB, pop it from GS.
    2. If the top element of GS is an action, pop it from GS, apply it to DB, and append it to the end of tex2html_wrap_inline472 .

  3. If tex2html_wrap_inline496 , check whether the formulas in the stack describing the goal configuration can be proved from DB. Add to GS the formulas that could not be proved from DB.



Josefina Sierra
Tue Jul 21 09:26:01 PDT 1998