File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
moveit_planners/stomp/include/stomp_moveit/math Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 42
42
#include < Eigen/Core>
43
43
#include < Eigen/Cholesky>
44
44
45
- // TODO(#2166): Replace with std types
46
- #include < boost/random/variate_generator.hpp>
47
-
48
45
#include < random>
49
46
#include < cstdlib>
50
47
@@ -80,9 +77,6 @@ class MultivariateGaussian
80
77
int size_;
81
78
std::mt19937 rng_;
82
79
std::normal_distribution<double > normal_dist_;
83
- // std::shared_ptr<boost::variate_generator<
84
- // std::mt19937, STD_MSGS__MSG__DETAIL__COLOR_RGBA__TYPE_SUPPORT_HPP_::std::normal_distribution<>>>
85
- // gaussian_;
86
80
};
87
81
88
82
// ////////////////////// template function definitions follow //////////////////////////////
@@ -94,7 +88,6 @@ MultivariateGaussian::MultivariateGaussian(const Eigen::MatrixBase<Derived1>& me
94
88
{
95
89
rng_.seed (rand ());
96
90
size_ = mean.rows ();
97
- // gaussian_.reset(new boost::variate_generator<std::mt19937, std::normal_distribution<double>>(rng_, normal_dist_));
98
91
}
99
92
100
93
template <typename Derived>
You can’t perform that action at this time.
0 commit comments