diff --git a/Classification/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp b/Classification/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp index 6d2ebb01acf..c62a2cddfca 100644 --- a/Classification/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp +++ b/Classification/include/CGAL/Classification/ETHZ/internal/random-forest/common-libraries.hpp @@ -34,11 +34,7 @@ #include #include #include -#if BOOST_VERSION >= 104700 -# include -#else -# include -#endif +#include #include #include #if defined(CGAL_LINKED_WITH_BOOST_IOSTREAMS) && defined(CGAL_LINKED_WITH_BOOST_SERIALIZATION) @@ -65,17 +61,10 @@ inline void init_feature_class_data(FeatureClassDataFloat& /*data*/, int /*n_cla } typedef std::unordered_set FeatureSet; -#if BOOST_VERSION >= 104700 typedef boost::random::uniform_int_distribution<> UniformIntDist; typedef boost::random::normal_distribution<> NormalDist; typedef boost::random::mt19937 RandomGen; typedef boost::random::uniform_01<> UnitDist; -#else -typedef boost::uniform_int<> UniformIntDist; -typedef boost::normal_distribution<> NormalDist; -typedef boost::uniform_01<> UnitDist; -typedef boost::mt19937 RandomGen; -#endif struct ForestParams { size_t n_classes;