-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSMR.h
197 lines (150 loc) · 7.54 KB
/
SMR.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the Willow Garage nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*********************************************************************/
/* Author: Ioan Sucan */
#ifndef OMPL_CONTROL_PLANNERS_SMR_SMR_
#define OMPL_CONTROL_PLANNERS_SMR_SMR_
#include "ompl/control/planners/PlannerIncludes.h"
#include "ompl/datastructures/NearestNeighbors.h"
#include "ompl/base/ValidStateSampler.h"
#include <memory>
#include <map>
namespace ompl
{
namespace control
{
/** \brief Stochastic Motion Roadmap */
class SMR : public base::Planner
{
public:
/** \brief Constructor */
SMR(const SpaceInformationPtr &si);
virtual ~SMR(void);
/** \brief Continue solving for some amount of time. Return true if solution was found. */
virtual base::PlannerStatus solve(const base::PlannerTerminationCondition &ptc);
/** \brief Clear datastructures. Call this function if the
input data to the planner has changed and you do not
want to continue planning */
virtual void clear(void);
virtual void getPlannerData(base::PlannerData &data) const;
/** \brief Set a different nearest neighbors datastructure */
template<template<typename T> class NN>
void setNearestNeighbors(void)
{
nn_.reset(new NN<std::shared_ptr<Motion>>());
}
virtual void setup(void);
void setupSMR(void);
/** \brief Set the number of nodes in the roadmap */
void setNodes(int N)
{
nodes_ = N;
}
/** \brief Get the number of nodes in the roadmap */
int getNodes(void) const
{
return nodes_;
}
/** \brief Return the number of samples generated per transition */
int getTransitionStates(void) const
{
return trans_;
}
/** \brief Set the number of samples taken for each transition */
void setTransitionStates(int M)
{
trans_ = M;
}
protected:
/** \brief Representation of a motion */
class Motion
{
public:
Motion(void) : si_(NULL), state(NULL), id_(0), goal(false) {}
/** \brief Constructor that allocates memory for the state */
Motion(const SpaceInformation *si, int id) : si_(si), state(si->allocState()), id_(id), goal(false) {}
~Motion(void)
{
//std::cout << "delete motion: " << id_ << std::endl;
if(!si_)
si_->freeState(state);
}
/** \brief The state contained by the motion */
base::State *state;
/** \brief The probability of moving to state T after applying control u - t[action][next_state] = probability */
std::map<int, std::map<int, double>> t;
/** \brief Unique State ID */
int id_;
const SpaceInformation* si_;
bool goal;
};
/** \brief Setup Transition Probabilities */
void setupTransitions(Motion* m);
/** \brief Probability of Success for state i */
double ps(int id);
/** \brief Free the memory allocated by this planner */
void freeMemory(void);
/** \brief Compute distance between motions (actually distance between contained states) */
double distanceFunction(const std::shared_ptr<Motion> a, const std::shared_ptr<Motion> b) const
{
return si_->distance(a->state, b->state);
}
/** \brief Valid State sampler */
base::ValidStateSamplerPtr sampler_;
/** \brief Control sampler */
DirectedControlSamplerPtr controlSampler_;
/** \brief The base::SpaceInformation cast as control::SpaceInformation, for convenience */
const SpaceInformation *siC_;
/** \brief A nearest-neighbors datastructure containing the tree of motions */
boost::shared_ptr< NearestNeighbors<std::shared_ptr<Motion>> > nn_;
/** \brief List of Nodes */
std::vector<std::shared_ptr<Motion>> nodeslist;
/** \brief The random number generator */
RNG rng_;
/** \brief n states in roadmap */
int nodes_ = 50000;
/** \brief m samples per transition */
int trans_ = 20;
const double epsilon = 0.0000001;
const double gamma = 0.001;
const int actions = 2;
const int obstacle = 0;
/** \brief SMR DP Lookup Table - State, Action = Success Rate */
std::map<int, std::map<int, double>> smrtable;
std::map<int, std::map<int, double>> future_smrtable;
std::shared_ptr<Motion> startMotion;
std::shared_ptr<Motion> goalMotion;
};
}
}
#endif