pddl_planner
Randward.hpp
Go to the documentation of this file.
1 #ifndef PDDL_PLANNER_RANDWARD_HPP
2 #define PDDL_PLANNER_RANDWARD_HPP
3 
4 #include <pddl_planner/PDDLPlannerInterface.hpp>
5 
6 namespace pddl_planner
7 {
8 namespace randward
9 {
15  {
16  public:
22  std::string getName() const { return "RANDWARD"; }
23 
24 
30  std::string getCmd() const { return "randward-planner"; }
31 
37  int getVersion() const { return 1; }
38 
43  Planner(const std::string& resultFileBasename = "plan");
44 
48  PlanCandidates plan(const std::string& problem, const std::string& actionDescriptions, const std::string& domainDescriptions, double timeout);
49 
50  private:
56  PlanCandidates generatePlanCandidates();
57  };
58 }
59 }
60 
61 
62 #endif // PDDL_PLANNER_RANDWARD_HPP
63 
Definition: Randward.hpp:14
std::string getCmd() const
Definition: Randward.hpp:30
int getVersion() const
Definition: Randward.hpp:37
Planner(const std::string &resultFileBasename="plan")
Definition: Randward.cpp:18
Definition: PDDLPlannerInterface.cpp:18
Definition: PDDLPlannerTypes.hpp:66
std::string getName() const
Definition: Randward.hpp:22
Definition: PDDLPlannerInterface.hpp:9
PlanCandidates plan(const std::string &problem, const std::string &actionDescriptions, const std::string &domainDescriptions, double timeout)
Definition: Randward.cpp:23