summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2020-11-01 20:42:43 +0100
committerMarc Glisse <marc.glisse@inria.fr>2020-11-01 20:42:43 +0100
commitc54a40fc6293fd746e1842f6811efae96df36bed (patch)
treed784159d5b794192b257e03d0e04f0d4be3f39c5 /src
parentc1579e92d6cc78958522604769b0bc595c5f0eae (diff)
Document that only double is supported.
Diffstat (limited to 'src')
-rw-r--r--src/Subsampling/include/gudhi/choose_n_farthest_points.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Subsampling/include/gudhi/choose_n_farthest_points.h b/src/Subsampling/include/gudhi/choose_n_farthest_points.h
index f22cb2d7..bdd2993a 100644
--- a/src/Subsampling/include/gudhi/choose_n_farthest_points.h
+++ b/src/Subsampling/include/gudhi/choose_n_farthest_points.h
@@ -41,7 +41,7 @@ enum : std::size_t {
* The iteration starts with the landmark `starting point` or, if `starting point==random_starting_point`,
* with a random landmark.
* \tparam Distance must provide an operator() that takes 2 points (value type of the range)
- * and returns their distance (or some more general proximity measure).
+ * and returns their distance (or some more general proximity measure) as a `double`.
* \tparam Point_range Random access range of points.
* \tparam PointOutputIterator Output iterator whose value type is the point type.
* \tparam DistanceOutputIterator Output iterator for distances.
@@ -88,6 +88,8 @@ void choose_n_farthest_points(Distance dist,
}
std::size_t current_number_of_landmarks = 0; // counter for landmarks
+ static_assert(std::numeric_limits<double>::has_infinity);
+ // FIXME: don't hard-code the type as double. For Epeck_d, we also want to handle types that do not have an infinity.
const double infty = std::numeric_limits<double>::infinity(); // infinity (see next entry)
std::vector< double > dist_to_L(nb_points, infty); // vector of current distances to L from input_pts