To compile the software package, run this:
mkdir build
cd build
cmake ..
makeRun (must be run from within bin at the moment):
cd bin
./GDAPlanner-binTo see whether a current implementation suffices all automated tests,
after compiling, run this from the build/ directory:
make testdata/tablesetting-domain.pddl: Table setting example domain file written in PDDLdata/tablesetting-problem.pddl: Table setting example problem file written in PDDL (fits the accompanying example domain)data/test/*: Numerous PDDL domain and problem definitions for testing the PDDL parser
To regenerate the Doxygen documentation, you will need Doxygen:
sudo apt-get install doxygenFrom the project's root directory, run Doxygen like so:
doxygen doc/DoxyfileThis will generate a doc/html directory, containing all source code
documentation. View it starting from the index.html contained therein:
google-chrome doc/html/index.htmlBe sure to check the Wiki! There are tutorials and further explanations of the concepts and code pieces there.