pddl_planner
Lama.hpp
Go to the documentation of this file.
1 #ifndef PDDL_PLANNER_LAMA_HPP
2 #define PDDL_PLANNER_LAMA_HPP
3 
4 #include <pddl_planner/PDDLPlannerInterface.hpp>
5 
6 namespace pddl_planner
7 {
8 namespace lama
9 {
15  {
16  public:
22  std::string getName() const { return "LAMA"; }
23 
24 
30  std::string getCmd() const { return "lama-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_LAMA_HPP
63 
PlanCandidates plan(const std::string &problem, const std::string &actionDescriptions, const std::string &domainDescriptions, double timeout)
Definition: Lama.cpp:23
Planner(const std::string &resultFileBasename="plan")
Definition: Lama.cpp:18
std::string getName() const
Definition: Lama.hpp:22
Definition: PDDLPlannerInterface.cpp:18
Definition: PDDLPlannerTypes.hpp:66
Definition: PDDLPlannerInterface.hpp:9
int getVersion() const
Definition: Lama.hpp:37
Definition: Lama.hpp:14
std::string getCmd() const
Definition: Lama.hpp:30