test_random.cpp
Go to the documentation of this file.
1 // *****************************************************************************
2 //
3 // Copyright (c) 2014, Southwest Research Institute® (SwRI®)
4 // All rights reserved.
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of Southwest Research Institute® (SwRI®) nor the
14 // names of its contributors may be used to endorse or promote products
15 // derived from this software without specific prior written permission.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 // ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 //
28 // *****************************************************************************
29 
30 #include <boost/random/mersenne_twister.hpp>
31 #include <gtest/gtest.h>
32 #include <swri_math_util/random.h>
33 
34 #include <ros/ros.h>
35 
36 #ifdef BOOST_1_46
37 namespace boost_random = boost;
38 #else
39 namespace boost_random = boost::random;
40 #endif
41 
43 {
44  boost_random::mt19937 gen;
45 
46  std::vector<int32_t> sample;
47  swri_math_util::GetUniformRandomSample<boost_random::mt19937>(gen, 0, 100, 10, sample);
48 
49  EXPECT_EQ(10, sample.size());
50 
51  swri_math_util::GetUniformRandomSample<boost_random::mt19937>(gen, 0, 100, 90, sample);
52  EXPECT_EQ(90, sample.size());
53 }
54 
55 TEST(RandomTests, RandomGenerator)
56 {
58 
59  std::vector<int32_t> sample;
60  gen.GetUniformRandomSample(0, 100, 10, sample);
61 
62  EXPECT_EQ(10, sample.size());
63 
64  gen.GetUniformRandomSample(0, 100, 90, sample);
65  EXPECT_EQ(90, sample.size());
66 }
67 
68 // Run all the tests that were declared with TEST()
69 int main(int argc, char **argv)
70 {
71  testing::InitGoogleTest(&argc, argv);
72 
73  return RUN_ALL_TESTS();
74 }
int main(int argc, char **argv)
Definition: test_random.cpp:69
void GetUniformRandomSample(RNG &rng, int32_t min, int32_t max, int32_t count, std::vector< int32_t > &sample)
Definition: random.h:89
void GetUniformRandomSample(int32_t min, int32_t max, int32_t count, std::vector< int32_t > &sample)
Definition: random.cpp:39
TEST(RandomTests, GetUniformRandomSample)
Definition: test_random.cpp:42


swri_math_util
Author(s): Marc Alban
autogenerated on Fri Jun 7 2019 22:05:41