Skip to content

Commit 8f8a1ae

Browse files
committed
cleanup
1 parent 41b8b30 commit 8f8a1ae

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

moveit_planners/stomp/include/stomp_moveit/math/multivariate_gaussian.hpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@
4242
#include <Eigen/Core>
4343
#include <Eigen/Cholesky>
4444

45-
// TODO(#2166): Replace with std types
46-
#include <boost/random/variate_generator.hpp>
47-
4845
#include <random>
4946
#include <cstdlib>
5047

@@ -80,9 +77,6 @@ class MultivariateGaussian
8077
int size_;
8178
std::mt19937 rng_;
8279
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_;
8680
};
8781

8882
//////////////////////// template function definitions follow //////////////////////////////
@@ -94,7 +88,6 @@ MultivariateGaussian::MultivariateGaussian(const Eigen::MatrixBase<Derived1>& me
9488
{
9589
rng_.seed(rand());
9690
size_ = mean.rows();
97-
// gaussian_.reset(new boost::variate_generator<std::mt19937, std::normal_distribution<double>>(rng_, normal_dist_));
9891
}
9992

10093
template <typename Derived>

0 commit comments

Comments
 (0)