From 5c8df1034c9549a40bd8db67edf7e87fff4344b1 Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Wed, 15 Jul 2020 14:56:51 +0200 Subject: [PATCH] Few fixes from review --- .../CGAL/Classification/ETHZ/Random_forest_classifier.h | 6 +++--- Classification/include/CGAL/Classification/Label.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Classification/include/CGAL/Classification/ETHZ/Random_forest_classifier.h b/Classification/include/CGAL/Classification/ETHZ/Random_forest_classifier.h index 8a0894bdf1c..4792e2cb9a2 100644 --- a/Classification/include/CGAL/Classification/ETHZ/Random_forest_classifier.h +++ b/Classification/include/CGAL/Classification/ETHZ/Random_forest_classifier.h @@ -320,14 +320,14 @@ public: /// @{ /*! - \brief Converts a deprecated GZ configuration to a new BIN - configuration. + \brief Converts a deprecated configuration (in compressed ASCII + format) to a new configuration (in binary format). The input file should be a GZIP container written by the `save_configuration()` method from CGAL 5.1 and earlier. The output is a valid configuration for CGAL 5.2 and later. - \note This function and depends on the Boost libraries + \note This function depends on the Boost libraries [Serialization](https://www.boost.org/libs/serialization) and [IO Streams](https://www.boost.org/libs/iostreams) (compiled with the GZIP dependency). */ diff --git a/Classification/include/CGAL/Classification/Label.h b/Classification/include/CGAL/Classification/Label.h index 1d6bea01eb2..22325d9e8ba 100644 --- a/Classification/include/CGAL/Classification/Label.h +++ b/Classification/include/CGAL/Classification/Label.h @@ -58,7 +58,7 @@ public: /// @{ /*! - returns the name of the classification label (e.g. vegetation). + returns the name of the classification label (_e.g._ vegetation). */ const std::string& name() const { return m_name; } @@ -70,7 +70,7 @@ public: std::size_t index() const { return m_index; } /*! - returns the standard index of the classification label (i.e. index in the ASPRS standard). + returns the standard index of the classification label (_e.g._ index in the ASPRS standard). \note This index is purely user-oriented and is not used by the classification algorithms. */