hpp-core 6.0.0
Implement basic classes for canonical path planning for kinematic chains.
Loading...
Searching...
No Matches
rs-time-parameterization.hh
Go to the documentation of this file.
1//
2// Copyright (c) 2019 - 2024 CNRS
3//
4// Author: Florent Lamiraux
5//
6
7// Redistribution and use in source and binary forms, with or without
8// modification, are permitted provided that the following conditions are
9// met:
10//
11// 1. Redistributions of source code must retain the above copyright
12// notice, this list of conditions and the following disclaimer.
13//
14// 2. Redistributions in binary form must reproduce the above copyright
15// notice, this list of conditions and the following disclaimer in the
16// documentation and/or other materials provided with the distribution.
17//
18// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
29// DAMAGE.
30
31#ifndef HPP_CORE_PATH_OPTIMIZATION_RS_TIME_PARAMETERIZATION_HH
32#define HPP_CORE_PATH_OPTIMIZATION_RS_TIME_PARAMETERIZATION_HH
33
36
37namespace hpp {
38namespace core {
39namespace pathOptimization {
45 public:
58
59 protected:
68 : PathOptimizer(problem) {}
69}; // class ReedsShepp
70
71} // namespace pathOptimization
72} // namespace core
73} // namespace hpp
74#endif // HPP_CORE_PATH_OPTIMIZATION_RS_TIME_PARAMETERIZATION_HH
Definition path-optimizer.hh:44
Definition rs-time-parameterization.hh:44
static RSTimeParameterizationPtr_t create(const ProblemConstPtr_t &problem)
Create instance and return shared pointer.
virtual PathVectorPtr_t optimize(const PathVectorPtr_t &path)
RSTimeParameterization(const ProblemConstPtr_t &problem)
Definition rs-time-parameterization.hh:67
#define HPP_CORE_DLLAPI
Definition config.hh:88
shared_ptr< RSTimeParameterization > RSTimeParameterizationPtr_t
Definition fwd.hh:303
shared_ptr< PathVector > PathVectorPtr_t
Definition fwd.hh:193
shared_ptr< const Problem > ProblemConstPtr_t
Definition fwd.hh:197
Definition bi-rrt-planner.hh:35