hpp-manipulation 9.0.2
Classes for manipulation planning.
enforce-transition-semantic.hh
Go to the documentation of this file.
1// Copyright (c) 2018, Joseph Mirabel
2// Authors: Joseph Mirabel (joseph.mirabel@laas.fr)
3//
4
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
8//
9// 1. Redistributions of source code must retain the above copyright
10// notice, this list of conditions and the following disclaimer.
11//
12// 2. Redistributions in binary form must reproduce the above copyright
13// notice, this list of conditions and the following disclaimer in the
14// documentation and/or other materials provided with the distribution.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
27// DAMAGE.
28
29#ifndef HPP_MANIPULATION_PATHOPTIMIZATION_ENFORCE_TRANSITION_SEMANTIC_HH
30#define HPP_MANIPULATION_PATHOPTIMIZATION_ENFORCE_TRANSITION_SEMANTIC_HH
31
34
35namespace hpp {
36namespace manipulation {
37namespace pathOptimization {
38using hpp::core::Path;
43
72 : public core::PathOptimizer {
73 public:
75 typedef shared_ptr<EnforceTransitionSemantic> Ptr_t;
76
79 if (!p) throw std::invalid_argument("This is not a manipulation problem.");
80 return Ptr_t(new EnforceTransitionSemantic(p));
81 }
82
84
85 protected:
88 : PathOptimizer(problem), problem_(problem) {}
89
90 private:
91 ProblemConstPtr_t problem_;
92};
93
95} // namespace pathOptimization
96} // namespace manipulation
97} // namespace hpp
98
99#endif // HPP_MANIPULATION_PATHOPTIMIZATION_ENFORCE_TRANSITION_SEMANTIC_HH
Definition: problem.hh:43
Definition: enforce-transition-semantic.hh:72
virtual PathVectorPtr_t optimize(const PathVectorPtr_t &path)
static Ptr_t create(const core::ProblemConstPtr_t &problem)
Definition: enforce-transition-semantic.hh:77
EnforceTransitionSemantic(const ProblemConstPtr_t &problem)
Constructor.
Definition: enforce-transition-semantic.hh:87
shared_ptr< EnforceTransitionSemantic > Ptr_t
Definition: enforce-transition-semantic.hh:75
hpp::core::PathVectorPtr_t PathVectorPtr_t
Definition: enforce-transition-semantic.hh:74
#define HPP_MANIPULATION_DLLAPI
Definition: config.hh:88
ProblemConstPtr_t problem() const
shared_ptr< SplineGradientBased > Ptr_t
shared_ptr< PathVector > PathVectorPtr_t
shared_ptr< const Problem > ProblemConstPtr_t
shared_ptr< Path > PathPtr_t
shared_ptr< const Problem > ProblemConstPtr_t
Definition: fwd.hh:66
#define HPP_DYNAMIC_PTR_CAST(t, x)