Exotica
motion_solver.h
Go to the documentation of this file.
1 //
2 // Copyright (c) 2018, University of Edinburgh
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are met:
7 //
8 // * Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of nor the names of its contributors may be used to
14 // endorse or promote products derived from this software without specific
15 // prior written permission.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 // POSSIBILITY OF SUCH DAMAGE.
28 //
29 
30 #ifndef EXOTICA_CORE_MOTION_SOLVER_H_
31 #define EXOTICA_CORE_MOTION_SOLVER_H_
32 
33 #include <exotica_core/factory.h>
34 #include <exotica_core/object.h>
36 #include <exotica_core/property.h>
37 
38 #define REGISTER_MOTIONSOLVER_TYPE(TYPE, DERIV) EXOTICA_CORE_REGISTER(exotica::MotionSolver, TYPE, DERIV)
39 
40 namespace exotica
41 {
42 class MotionSolver : public Object, Uncopyable, public virtual InstantiableBase
43 {
44 public:
45  MotionSolver() = default;
46  virtual ~MotionSolver() = default;
47  void InstantiateBase(const Initializer& init) override;
48  virtual void SpecifyProblem(PlanningProblemPtr pointer);
49  virtual void Solve(Eigen::MatrixXd& solution) = 0;
51  std::string Print(const std::string& prepend) const override;
52  void SetNumberOfMaxIterations(int max_iter)
53  {
54  if (max_iter < 1) ThrowPretty("Number of maximum iterations needs to be greater than 0.");
55  max_iterations_ = max_iter;
56  }
58  double GetPlanningTime() { return planning_time_; }
59 
60 protected:
62  double planning_time_ = -1;
63  int max_iterations_ = 100;
64 };
65 
66 typedef std::shared_ptr<exotica::MotionSolver> MotionSolverPtr;
67 } // namespace exotica
68 
69 #endif // EXOTICA_CORE_MOTION_SOLVER_H_
exotica::MotionSolver::SetNumberOfMaxIterations
void SetNumberOfMaxIterations(int max_iter)
Definition: motion_solver.h:52
exotica::MotionSolver::Solve
virtual void Solve(Eigen::MatrixXd &solution)=0
exotica::Uncopyable
Definition: uncopyable.h:35
factory.h
planning_problem.h
exotica::MotionSolver::problem_
PlanningProblemPtr problem_
Definition: motion_solver.h:61
exotica::MotionSolver::InstantiateBase
void InstantiateBase(const Initializer &init) override
property.h
exotica::MotionSolver::GetPlanningTime
double GetPlanningTime()
Definition: motion_solver.h:58
exotica::InstantiableBase
Definition: property.h:98
exotica
Definition: cartpole_dynamics_solver.h:38
exotica::MotionSolver::max_iterations_
int max_iterations_
Definition: motion_solver.h:63
exotica::Object
Definition: object.h:44
exotica::MotionSolver::GetNumberOfMaxIterations
int GetNumberOfMaxIterations()
Definition: motion_solver.h:57
exotica::Initializer
Definition: property.h:70
exotica::MotionSolver::Print
std::string Print(const std::string &prepend) const override
exotica::MotionSolver
Definition: motion_solver.h:42
exotica::PlanningProblemPtr
std::shared_ptr< PlanningProblem > PlanningProblemPtr
Definition: planning_problem.h:116
exotica::MotionSolver::~MotionSolver
virtual ~MotionSolver()=default
ThrowPretty
#define ThrowPretty(m)
Definition: exception.h:36
exotica::MotionSolver::planning_time_
double planning_time_
Definition: motion_solver.h:62
exotica::MotionSolver::SpecifyProblem
virtual void SpecifyProblem(PlanningProblemPtr pointer)
exotica::MotionSolver::MotionSolver
MotionSolver()=default
object.h
exotica::MotionSolver::GetProblem
PlanningProblemPtr GetProblem() const
Definition: motion_solver.h:50
exotica::MotionSolverPtr
std::shared_ptr< exotica::MotionSolver > MotionSolverPtr
Definition: motion_solver.h:66