Goal Stack Planning for Blocks World Problem

Implementing Goal Stack Planning for the given configuration of Blocks World Problem

Apoorv Dixit
5 min readOct 27, 2020
Blocks World Problem — Initial State and Goal State for this article

In this medium article, we will take look at the Blocks World Problem and implement Goal Stack Planning to solve the same.

What is Blocks World Problem?

This is how the problem goes — There is a table on which some blocks are placed. Some blocks may or may not be stacked on other blocks. We have a robot arm to pick up or put down the blocks. The robot arm can move only one block at a time, and no other block should be stacked on top of the block which is to be moved by the robot arm.

Our aim is to change the configuration of the blocks from the Initial State to the Goal State, both of which have been specified in the diagram above.

What is Goal Stack Planning?

Goal Stack Planning is one of the earliest methods in artificial intelligence in which we work backwards from the goal state to the initial state.

We start at the goal state and we try fulfilling the preconditions required to achieve the initial state. These preconditions in turn have their own set of preconditions, which are required to be satisfied first. We keep solving these “goals” and “sub-goals” until we finally arrive at the Initial State. We make use of a stack to hold these goals that need to be fulfilled as well the actions that we need to perform for the same.

Apart from the “Initial State” and the “Goal State”, we maintain a “World State” configuration as well. Goal Stack uses this world state to work its way from Goal State to Initial State. World State on the other hand starts off as the Initial State and ends up being transformed into the Goal state.

At the end of this algorithm we are left with an empty stack and a set of actions which helps us navigate from the Initial State to the World State.

Representing the configurations as a list of “predicates”

Predicates can be thought of as a statement which helps us convey the information about a configuration in Blocks World.

Given below are the list of predicates as well as their intended meaning

  1. ON(A,B) : Block A is on B
  2. ONTABLE(A) : A is on table
  3. CLEAR(A) : Nothing is on top of A
  4. HOLDING(A) : Arm is holding A.
  5. ARMEMPTY : Arm is holding nothing

Using these predicates, we represent the Initial State and the Goal State in our example like this:

Initial State — ON(B,A) ∧ ONTABLE(A) ∧ ONTABLE(C) ∧ ONTABLE(D) ∧ CLEAR(B) ∧ CLEAR(C) ∧ CLEAR(D) ∧ ARMEMPTY

Initial State

Goal State — ON(C,A) ∧ ON(B,D) ∧ ONTABLE(A) ∧ ONTABLE(D) ∧ CLEAR(B) ∧ CLEAR(C) ∧ ARMEMPTY

Goal State

Thus a configuration can be thought of as a list of predicates describing the current scenario.

“Operations” performed by the robot arm

The Robot Arm can perform 4 operations:

  1. STACK(X,Y) : Stacking Block X on Block Y
  2. UNSTACK(X,Y) : Picking up Block X which is on top of Block Y
  3. PICKUP(X) : Picking up Block X which is on top of the table
  4. PUTDOWN(X) : Put Block X on the table

All the four operations have certain preconditions which need to be satisfied to perform the same. These preconditions are represented in the form of predicates.

The effect of these operations is represented using two lists ADD and DELETE. DELETE List contains the predicates which will cease to be true once the operation is performed. ADD List on the other hand contains the predicates which will become true once the operation is performed.

The Precondition, Add and Delete List for each operation is rather intuitive and have been listed below.

Operations performed by the Robot Arm

For example, to perform the STACK(X,Y) operation i.e. to Stack Block X on top of Block Y, No other block should be on top of Y (CLEAR(Y)) and the Robot Arm should be holding the Block X (HOLDING(X)).

Once the operation is performed, these predicates will cease to be true, thus they are included in DELETE List as well. (Note : It is not necessary for the Precondition and DELETE List to be the exact same).

On the other hand, once the operation is performed, The robot arm will be free (ARMEMPTY) and the block X will be on top of Y (ON(X,Y)).

The other 3 Operators follow similar logic, and this part is the cornerstone of Goal Stack Planning.

Python3 Code for Goal Stack Planning

We can think of Predicates and Operations as objects which we need to push and pop off the Stack of our Goal Stack Planner. Keeping this in mind, we start off by creating a class for each predicate and each operation.

In the classes for operators I have included the methods to return the Predicates of Prerequisite, Add and Delete list.

On the other hand, in the classes for Predicates I have included get_action method which returns the Operator required to fulfill the unsatisfied Predicate.

I’ve included an example of a Predicate (ON(X,Y)) and an Operation.(STACK(X,Y)) below.

On(X,Y) Predicate Class
STACK(X,Y) Predicate Operation

Following this, I have a class GoalStackPlanner which takes in the initial state and the goal state as it’s parameters. It returns the steps which need to be carried out to convert initial state to goal state.

Goal Stack Planner Class

Now that we have defined the necessary Classes, Here is an example for running our Goal Stack Planner

Running Goal Stack Planner

As you can see, we have stored the steps from initial state to goal state in the variable steps.

In this example, steps = [PICKUP(C), PUTDOWN(C), UNSTACK(B,A), PUTDOWN(B), PICKUP(C), STACK(C,A), PICKUP(B), STACK(B,D)]

The visual representation of our steps variable looks like this.

Now that we are done with the explanation of Goal Stack Planner and Blocks World, Here is the full Python Code.

This is my first article on medium and it was a bit of a spur-of-the-moment decision. Nevertheless, I had a good time writing this article and hopefully you, the reader, has gained something out of it as well.

--

--

Apoorv Dixit

I'm an undergrad currently pursuing my bachelors degree in Computer Engineering from Pune Institute of Computer Technology