Plannning with Blackbox

This homework assignment was taken from Jim Blythe of ISI at the University of Southern California. Here's the original assignment.

You will define a simple planning domain and run the Blackbox planner. The Blackbox planner is available from here.

The domain we will define is a simple trucking domain, which has three types of objects: trucks, cities and packages. Trucks are used to transport packages from one city to another. Define a Blackbox domain with three operators: "drive", "load" and "unload". A truck can go directly from any city to any other city with a "drive" operator. Each truck can transport just one package at a time from one city to another. To load a package in a truck, the truck must be empty and the truck and package must both be at the same city. When you unload a package from a truck, it becomes empty again.

  1. Define this planning domain in Blackbox.
  2. Test your domain on a simple problem that requires moving a package from one location to another. Make sure that the package is not in two cities at the same time.
  3. Turn in a print out of your domain, initial state, goal state, and trace of a successful run.
  4. Test your domain on problems that require moving 1, 5 and 10 packages from one location to another. Use the statistics reported by Blackbox to see how long the planner takes for each of these problems. What if you also increase the number of cities?
  5. Remove the restriction that a truck can only transport one package at a time. How does it affect Blackbox's performance for the different numbers of packages?
  6. Turn in a description of the behavior of Blackbox when you increase the number of packages, cities, and trucks (assume no more than 5 trucks).

Hints:

Submit the results in electronic form to http://caddis.acad.emich.edu/~hwmatt/student.