hpp-manipulation 6.0.0
Classes for manipulation planning.
Loading...
Searching...
No Matches
random-shortcut.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_PATH_OPTIMIZATION_RANDOM_SHORTCUT_HH
30#define HPP_MANIPULATION_PATH_OPTIMIZATION_RANDOM_SHORTCUT_HH
31
32#include <hpp/core/path-optimization/random-shortcut.hh>
35
36namespace hpp {
37namespace manipulation {
40namespace pathOptimization {
42typedef shared_ptr<RandomShortcut> RandomShortcutPtr_t;
43
45 : public core::pathOptimization::RandomShortcut {
46 public:
48 static RandomShortcutPtr_t create(const core::ProblemConstPtr_t problem) {
49 return RandomShortcutPtr_t(new RandomShortcut(problem));
50 }
51
52 protected:
53 RandomShortcut(const core::ProblemConstPtr_t& problem)
54 : core::pathOptimization::RandomShortcut(problem) {}
55
58 virtual bool shootTimes(const core::PathVectorPtr_t& currentOpt,
59 const value_type& t0, value_type& t1, value_type& t2,
60 const value_type& t3);
61}; // class RandomShortcut
63} // namespace pathOptimization
64} // namespace manipulation
65} // namespace hpp
66
67#endif // HPP_MANIPULATION_PATH_OPTIMIZATION_RANDOM_SHORTCUT_HH
RandomShortcut(const core::ProblemConstPtr_t &problem)
Definition random-shortcut.hh:53
static RandomShortcutPtr_t create(const core::ProblemConstPtr_t problem)
Return shared pointer to new object.
Definition random-shortcut.hh:48
virtual bool shootTimes(const core::PathVectorPtr_t &currentOpt, const value_type &t0, value_type &t1, value_type &t2, const value_type &t3)
#define HPP_MANIPULATION_DLLAPI
Definition config.hh:88
shared_ptr< RandomShortcut > RandomShortcutPtr_t
Definition random-shortcut.hh:42
core::value_type value_type
Definition fwd.hh:89
Definition main.hh:1