RandomNumbers.cpp
1 /*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2008, Willow Garage, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
17 * * Neither the name of the Willow Garage nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *********************************************************************/
34 
35 /* Author: Ioan Sucan, Jonathan Gammell*/
36 
37 // Enable the use of shallow_array_adaptor to create a uBLAS-vector-view of C-style array without copying data
38 #define BOOST_UBLAS_SHALLOW_ARRAY_ADAPTOR
39 
40 #include "ompl/util/RandomNumbers.h"
41 #include "ompl/util/Exception.h"
42 #include "ompl/util/Console.h"
43 #include <mutex>
44 #include <memory>
45 #include <boost/math/constants/constants.hpp>
46 #include <boost/scoped_ptr.hpp>
47 #include <boost/random/uniform_on_sphere.hpp>
48 #include <boost/random/variate_generator.hpp>
49 // For boost::numeric::ublas::shallow_array_adaptor:
50 #include <boost/numeric/ublas/vector.hpp>
51 
53 namespace
54 {
58  class RNGSeedGenerator
59  {
60  public:
61  RNGSeedGenerator() :
62  someSeedsGenerated_(false),
63  firstSeed_(std::chrono::duration_cast<std::chrono::microseconds>(
64  std::chrono::system_clock::now() -
65  std::chrono::system_clock::time_point::min()).count()),
66  sGen_(firstSeed_),
67  sDist_(1, 1000000000)
68  {
69  }
70 
71  std::uint_fast32_t firstSeed()
72  {
73  std::lock_guard<std::mutex> slock(rngMutex_);
74  return firstSeed_;
75  }
76 
77  void setSeed(std::uint_fast32_t seed)
78  {
79  std::lock_guard<std::mutex> slock(rngMutex_);
80  if (seed > 0)
81  {
82  if (someSeedsGenerated_)
83  {
84  OMPL_ERROR("Random number generation already started. Changing seed now will not lead to deterministic sampling.");
85  }
86  else
87  {
88  // In this case, since no seeds have been generated yet, so we remember this seed as the first one.
89  firstSeed_ = seed;
90  }
91  }
92  else
93  {
94  if (someSeedsGenerated_)
95  {
96  OMPL_WARN("Random generator seed cannot be 0. Ignoring seed.");
97  return;
98  }
99  else
100  {
101  OMPL_WARN("Random generator seed cannot be 0. Using 1 instead.");
102  seed = 1;
103  }
104  }
105  sGen_.seed(seed);
106  }
107 
108  std::uint_fast32_t nextSeed()
109  {
110  std::lock_guard<std::mutex> slock(rngMutex_);
111  someSeedsGenerated_ = true;
112  return sDist_(sGen_);
113  }
114 
115  private:
116  bool someSeedsGenerated_;
117  std::uint_fast32_t firstSeed_;
118  std::mutex rngMutex_;
119  std::ranlux24_base sGen_;
120  std::uniform_int_distribution<> sDist_;
121  };
122 
123  static std::once_flag g_once;
124  static boost::scoped_ptr<RNGSeedGenerator> g_RNGSeedGenerator;
125 
126  void initRNGSeedGenerator()
127  {
128  g_RNGSeedGenerator.reset(new RNGSeedGenerator());
129  }
130 
131  RNGSeedGenerator& getRNGSeedGenerator()
132  {
133  std::call_once(g_once, &initRNGSeedGenerator);
134  return *g_RNGSeedGenerator;
135  }
136 } // namespace
138 
139 
140 
142 class ompl::RNG::SphericalData
143 {
144 public:
146  typedef boost::numeric::ublas::shallow_array_adaptor<double> container_type_t;
147 
149  typedef boost::uniform_on_sphere<double, container_type_t> spherical_dist_t;
150 
152  typedef boost::variate_generator<std::mt19937*, spherical_dist_t > variate_generator_t;
153 
155  SphericalData(std::mt19937* generatorPtr) : generatorPtr_(generatorPtr)
156  {
157  };
158 
160  container_type_t generate(unsigned int dim)
161  {
162  // Assure that the dimension is in the range of the vector.
163  growVector(dim);
164 
165  // Assure that the dimension is allocated:
166  allocateDimension(dim);
167 
168  // Return the generator
169  return (*dimVector_.at(dim).second)();
170  };
171 
173  void reset()
174  {
175  // Iterate over each dimension
176  for (unsigned int i = 0u; i < dimVector_.size(); ++i)
177  {
178  //Check if the variate_generator is allocated
179  if (bool(dimVector_.at(i).first) == true)
180  {
181  //It is, reset THE DATA (not the pointer)
182  dimVector_.at(i).first->reset();
183  }
184  //No else, this is an uninitialized dimension.
185  }
186  };
187 
188 private:
190  typedef std::pair<std::shared_ptr<spherical_dist_t>,
191  std::shared_ptr<variate_generator_t> > dist_gen_pair_t;
192 
194  std::vector<dist_gen_pair_t> dimVector_;
195 
197  std::mt19937* generatorPtr_;
198 
200  void growVector(unsigned int dim)
201  {
202  // Iterate until the index associated with this dimension is in the vector
203  while (dim >= dimVector_.size())
204  {
205  // Create a pair of empty pointers:
206  dimVector_.push_back(dist_gen_pair_t());
207  }
208  };
209 
211  void allocateDimension(unsigned int dim)
212  {
213  // Only do this if unallocated, so check that:
214  if (dimVector_.at(dim).first == nullptr)
215  {
216  // It is not allocated, so....
217  // First construct the distribution
218  dimVector_.at(dim).first = std::make_shared<spherical_dist_t> (dim);
219  // Then the variate generator
220  dimVector_.at(dim).second = std::make_shared<variate_generator_t> (generatorPtr_, *dimVector_.at(dim).first);
221  }
222  //No else, the pointer is already allocated.
223  };
224 };
226 
227 std::uint_fast32_t ompl::RNG::getSeed()
228 {
229  return getRNGSeedGenerator().firstSeed();
230 }
231 
232 void ompl::RNG::setSeed(std::uint_fast32_t seed)
233 {
234  getRNGSeedGenerator().setSeed(seed);
235 }
236 
238  localSeed_(getRNGSeedGenerator().nextSeed()),
239  generator_(localSeed_),
240  uniDist_(0, 1),
241  normalDist_(0, 1),
242  sphericalDataPtr_(std ::make_shared<SphericalData> (&generator_))
243 {
244 }
245 
246 ompl::RNG::RNG(std::uint_fast32_t localSeed) :
247  localSeed_(localSeed),
248  generator_(localSeed_),
249  uniDist_(0, 1),
250  normalDist_(0, 1),
251  sphericalDataPtr_(std::make_shared<SphericalData> (&generator_))
252 {
253 }
254 
255 void ompl::RNG::setLocalSeed(std::uint_fast32_t localSeed)
256 {
257  // Store the seed
258  localSeed_ = localSeed;
259 
260  // Change the generator's seed
261  generator_.seed(localSeed_);
262 
263  // Reset the distributions used by the variate generators, as they can cache values
264  uniDist_.reset();
265  normalDist_.reset();
266  sphericalDataPtr_->reset();
267 
268 }
269 
270 double ompl::RNG::halfNormalReal(double r_min, double r_max, double focus)
271 {
272  assert(r_min <= r_max);
273 
274  const double mean = r_max - r_min;
275  double v = gaussian(mean, mean/focus);
276 
277  if (v > mean) v = 2.0 * mean - v;
278  double r = v >= 0.0 ? v + r_min : r_min;
279  return r > r_max ? r_max : r;
280 }
281 
282 int ompl::RNG::halfNormalInt(int r_min, int r_max, double focus)
283 {
284  int r = (int)floor(halfNormalReal((double)r_min, (double)(r_max) + 1.0, focus));
285  return (r > r_max) ? r_max : r;
286 }
287 
288 // From: "Uniform Random Rotations", Ken Shoemake, Graphics Gems III,
289 // pg. 124-132
290 void ompl::RNG::quaternion(double value[4])
291 {
292  double x0 = uniDist_(generator_);
293  double r1 = sqrt(1.0 - x0), r2 = sqrt(x0);
294  double t1 = 2.0 * boost::math::constants::pi<double>() * uniDist_(generator_), t2 = 2.0 * boost::math::constants::pi<double>() * uniDist_(generator_);
295  double c1 = cos(t1), s1 = sin(t1);
296  double c2 = cos(t2), s2 = sin(t2);
297  value[0] = s1 * r1;
298  value[1] = c1 * r1;
299  value[2] = s2 * r2;
300  value[3] = c2 * r2;
301 }
302 
303 // From Effective Sampling and Distance Metrics for 3D Rigid Body Path Planning, by James Kuffner, ICRA 2004
304 void ompl::RNG::eulerRPY(double value[3])
305 {
306  value[0] = boost::math::constants::pi<double>() * (-2.0 * uniDist_(generator_) + 1.0);
307  value[1] = acos(1.0 - 2.0 * uniDist_(generator_)) - boost::math::constants::pi<double>() / 2.0;
308  value[2] = boost::math::constants::pi<double>() * (-2.0 * uniDist_(generator_) + 1.0);
309 }
310 
311 
312 void ompl::RNG::uniformNormalVector(unsigned int n, double value[])
313 {
314  // Create a uBLAS-vector-view of the C-style array without copying data
315  SphericalData::container_type_t rVector(n, value);
316 
317  // Generate a random value, the variate_generator is returning a shallow_array_adaptor, which will modify the value array:
318  rVector = sphericalDataPtr_->generate(n);
319 }
320 
321 // See: http://math.stackexchange.com/a/87238
322 void ompl::RNG::uniformInBall(double r, unsigned int n, double value[])
323 {
324  // Draw a random point on the unit sphere
325  uniformNormalVector(n, value);
326 
327  // Draw a random radius scale
328  double radiusScale = r * std::pow(uniformReal(0.0, 1.0), 1.0 / static_cast<double>(n));
329 
330  // Scale the point on the unit sphere
331  for (unsigned int i = 0u; i < n; ++i)
332  {
333  value[i] = radiusScale * value[i];
334  }
335 }
336 
337 #if OMPL_HAVE_EIGEN3
338 void ompl::RNG::uniformProlateHyperspheroidSurface(const std::shared_ptr<const ProlateHyperspheroid> &phsPtr, double value[])
339 {
340  // Variables
341  // The spherical point as a std::vector
342  std::vector<double> sphere(phsPtr->getDimension());
343 
344  // Get a random point on the sphere
345  uniformNormalVector(phsPtr->getDimension(), &sphere[0]);
346 
347  // Transform to the PHS
348  phsPtr->transform(&sphere[0], value);
349 }
350 
351 void ompl::RNG::uniformProlateHyperspheroid(const std::shared_ptr<const ProlateHyperspheroid> &phsPtr, double value[])
352 {
353  // Variables
354  // The spherical point as a std::vector
355  std::vector<double> sphere(phsPtr->getDimension());
356 
357  // Get a random point in the sphere
358  uniformInBall(1.0, phsPtr->getDimension(), &sphere[0]);
359 
360  // Transform to the PHS
361  phsPtr->transform(&sphere[0], value);
362 }
363 #endif
void quaternion(double value[4])
Uniform random unit quaternion sampling. The computed value has the order (x,y,z,w). The return variable value is expected to already exist.
RNG()
Constructor. Always sets a different random seed.
void eulerRPY(double value[3])
Uniform random sampling of Euler roll-pitch-yaw angles, each in the range (-pi, pi]. The computed value has the order (roll, pitch, yaw). The return variable value is expected to already exist.
int halfNormalInt(int r_min, int r_max, double focus=3.0)
Generate a random integer using a half-normal distribution. The value is within specified bounds ([r_...
void uniformNormalVector(unsigned int n, double value[])
Uniform random sampling of a unit-length vector. I.e., the surface of an n-ball. The return variable ...
#define OMPL_ERROR(fmt,...)
Log a formatted error string.
Definition: Console.h:64
static std::uint_fast32_t getSeed()
Get the seed used to generate the seeds of each RNG instance. Passing the returned value to setSeed()...
#define OMPL_WARN(fmt,...)
Log a formatted warning string.
Definition: Console.h:66
double halfNormalReal(double r_min, double r_max, double focus=3.0)
Generate a random real using a half-normal distribution. The value is within specified bounds [r_min...
point now()
Get the current time point.
Definition: Time.h:72
void setLocalSeed(std::uint_fast32_t localSeed)
Set the seed used for the instance of a RNG. Use this function to ensure that an instance of an RNG g...
static void setSeed(std::uint_fast32_t seed)
Set the seed used to generate the seeds of each RNG instance. Use this function to ensure the same se...
void uniformInBall(double r, unsigned int n, double value[])
Uniform random sampling of the content of an n-ball, with a radius appropriately distributed between ...