-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYourSample.cpp
46 lines (38 loc) · 1.01 KB
/
YourSample.cpp
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
#include <chrono>
#include <rl/plan/SimpleModel.h>
#include "YourSampler.h"
namespace rl
{
namespace plan
{
YourSampler::YourSampler() :
Sampler(),
randDistribution(0, 1),
randEngine(::std::random_device()())
{
}
YourSampler::~YourSampler()
{
}
::rl::math::Vector
YourSampler::generate()
{
::rl::math::Vector rand(this->model->getDof());
for (::std::size_t i = 0; i < this->model->getDof(); ++i)
{
rand(i) = this->rand();
}
return this->model->generatePositionUniform(rand);
}
::std::uniform_real_distribution< ::rl::math::Real>::result_type
YourSampler::rand()
{
return this->randDistribution(this->randEngine);
}
void
YourSampler::seed(const ::std::mt19937::result_type& value)
{
this->randEngine.seed(value);
}
}
}