X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=planner.h;h=79db5420a06cd52e751947013f8eb594af8d7791;hb=fdcf46671ca1dab0dadb490bb4375dc3dd2fc9a4;hp=4846fd9166a908b0a0d54b7b592455d24cfce0b5;hpb=50f9b29fed8c97deac825a31c35bb7759abca04f;p=popboot.git diff --git a/planner.h b/planner.h index 4846fd9..79db542 100644 --- a/planner.h +++ b/planner.h @@ -1,12 +1,30 @@ #ifndef __PLANNER_H__ #define __PLANNER_H__ -#include + +#include +#include +#include "action.h" + +class Node; class Planner { public: + Planner(std::vector actions, Literals init, Literals goal); + ~Planner(); + + void execute(); protected: - Node start; - std::hash_map addedNodes; + + void makePlan(Node* node); + void addNode(Node* node); + + Node* _start; + Node* _finish; + __gnu_cxx::hash_map _addedEffects; + __gnu_cxx::hash_map _actions; + Literals _init; + Literals _goal; + std::vector _addedNodes; }; #endif