- Luis Gustavo Souza Silva (luisgustavo.silva@gatech.edu)
- Arvind Krishnaa Jagannathan (arvind.krishnaa@gatech.edu)
- Zhengyi (Stango) Hu (zhengyihu@gatech.edu)
- Zheng (James) Yong (zyong6@gatech.edu)
- The top level directory contains the files for the Report.
- Tex files containing the write-up of the Project.
- images is the folder which contains any image we used in the report.
- All source code and plans generated is in the src folder
- Solutions to each problem is present in their respective directories
- problem2 : Binaries and PDDL representation of the 3 disk Towers of Hanoi problem
- problem3 : Binaries and PDDL representation of the 4 Sokoban problems
- problem4 : Our implementation of the planner
- "Normalized Sokoban Planner.cpp" - C++ implementation of a planner using BFS
- "sokoban" - The executable from the C++ file
- .in files - Input map file for each of the Sokoban problems
- .out files - Plan maps for each of the Sokoban problems
- problem5 : Binaries and PDDL representation of 6, 10 disk Towers of Hanoi problem
- "getHanoiNPDDL.py" - A python script to generate PDDL representation for the general N-disk Towers of Hanoi problem
- resources : Plans generated by the various planners
- "Hanoi Plans"
- Plans generated by FF and Blackbox for the 3 disk Towers of Hanoi Problem
- Plans generated by FF for 6, 10 disk Towers of Hanoi Problem
- "Sokoban Plans" : Plans generated by FF for the Part-I Sokoban Problem
- "Our_Planner_Solutions" : Plans generated by our planner for the Part-II Sokoban Problem
- "Hanoi Plans"
cd
into the corresponding directory and follow these instructions:
- To run the planners for 3-disk Towers of Hanoi problem (problem2)
- Blackbox:
././blackbox -o hanoi-domain.pddl -f hanoi-3.pddl
- FF:
./ff -o hanoi-domain.pddl -f hanoi-3.pddl
- Blackbox:
- To run the planners for 6, 10-disk Towers of Hanoi problem (problem5)
- FF:
./ff -o hanoi-domain.pddl -f hanoi-6.pddl
./ff -o hanoi-domain.pddl -f hanoi-10.pddl
- Blackbox: Does not produce output for these
- FF:
- To run the planners for the Sokoban planner (problem3)
- FF:
./ff -o sokobanDomain.pddl -f prob2-1.pddl
./ff -o sokobanDomain.pddl -f prob2-2.pddl
./ff -o sokobanDomain.pddl -f prob2-3.pddl
./ff -o sokobanDomain.pddl -f sokobanChallenge.pddl
- FF:
- To run our planner (problem4), there are two steps:
- Compile the C++ file
g++ "Normalized Sokoban Planner.cpp" -o sokoban
- Run the executable with an input map, specifying the output file where the plan needs to be written
./sokoban sokoban-2-1.in sokoban-2-1.out
- Compile the C++ file
Luis Gustavo Souza Silva
- Created the PDDL for sokoban domain definition and for the problems and answers related to Project Part-I Sokoban Planner.
- Also, settled up the enviroment to run Blackbox and FF's planner on Windows machines.
- All planners are tested to be working on my box
Zhengyi Hu: Problem 4: Project Part-II Sokoban Plannner
- State space compression
- Develop a efficiently HASH function
- Implement the algorithm
Zheng Yong: Problem 4: Project Part-II Sokoban Planner
- Branch optimization
- Implement the algorithm
- Answer to 4.3 - 4.4 problem.
Arvind Krishnaa Jagannathan:
- Problem 2: Towers of Hanoi (3 disks) - Defined domain and PDDL for initial state and goal state
- Problem 5: Towers of Hanoi (N disks) - Defined the states for the problem with 6 and 10 disks.
- Wrote a python script to generate the PDDL for a N disk towers of hanoi problem
- Problem 4: Project PartII Sokoban Planner
- Domain description for the 4 problems
- Answer to 4.1 - 4.2 problem
- Miscellaneous
- Setup Blackbox and FF on Linux box
- Performed analysis of the computation metrics (time, space etc.,) wherever required.
- All planners are tested to be working on my box