hpp-manipulation  6.0.0
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 
32 #include <hpp/core/path-optimizer.hh>
34 
35 namespace hpp {
36 namespace manipulation {
37 namespace pathOptimization {
38 using hpp::core::Path;
39 using hpp::core::PathPtr_t;
40 using hpp::core::PathVector;
43 
45  : public core::PathOptimizer {
46  public:
47  typedef hpp::core::PathVectorPtr_t PathVectorPtr_t;
48  typedef shared_ptr<EnforceTransitionSemantic> Ptr_t;
49 
50  static Ptr_t create(const core::ProblemConstPtr_t& problem) {
51  ProblemConstPtr_t p(HPP_DYNAMIC_PTR_CAST(const Problem, problem));
52  if (!p) throw std::invalid_argument("This is not a manipulation problem.");
53  return Ptr_t(new EnforceTransitionSemantic(p));
54  }
55 
57 
58  protected:
61  : PathOptimizer(problem), problem_(problem) {}
62 
63  private:
64  ProblemConstPtr_t problem_;
65 };
66 
68 } // namespace pathOptimization
69 } // namespace manipulation
70 } // namespace hpp
71 
72 #endif // HPP_MANIPULATION_PATHOPTIMIZATION_ENFORCE_TRANSITION_SEMANTIC_HH
Definition: problem.hh:43
Definition: enforce-transition-semantic.hh:45
virtual PathVectorPtr_t optimize(const PathVectorPtr_t &path)
static Ptr_t create(const core::ProblemConstPtr_t &problem)
Definition: enforce-transition-semantic.hh:50
EnforceTransitionSemantic(const ProblemConstPtr_t &problem)
Constructor.
Definition: enforce-transition-semantic.hh:60
shared_ptr< EnforceTransitionSemantic > Ptr_t
Definition: enforce-transition-semantic.hh:48
hpp::core::PathVectorPtr_t PathVectorPtr_t
Definition: enforce-transition-semantic.hh:47
#define HPP_MANIPULATION_DLLAPI
Definition: config.hh:88
core::PathOptimizer PathOptimizer
Definition: fwd.hh:117
shared_ptr< const Problem > ProblemConstPtr_t
Definition: fwd.hh:66
Definition: main.hh:1