Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Shobuj-Paul committed Oct 2, 2023
1 parent 864fca5 commit 68df427
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@
#include <Eigen/Core>
#include <Eigen/Cholesky>

// TODO(#2166): Replace with std types
#include <boost/random/variate_generator.hpp>

#include <random>
#include <cstdlib>

Expand Down Expand Up @@ -80,9 +77,6 @@ class MultivariateGaussian
int size_;
std::mt19937 rng_;
std::normal_distribution<double> normal_dist_;
// std::shared_ptr<boost::variate_generator<
// std::mt19937, STD_MSGS__MSG__DETAIL__COLOR_RGBA__TYPE_SUPPORT_HPP_::std::normal_distribution<>>>
// gaussian_;
};

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

template <typename Derived>
Expand Down

0 comments on commit 68df427

Please sign in to comment.