summaryrefslogtreecommitdiff
path: root/src/Subsampling
diff options
context:
space:
mode:
authorcjamin <cjamin@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-06-21 13:09:35 +0000
committercjamin <cjamin@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-06-21 13:09:35 +0000
commitffcfe6014704dc2b2e5121d64ba42a832f4bbc34 (patch)
treeb5bdba4e48b4fc812a342ade1a14c5e49ef91688 /src/Subsampling
parentc4bad9f4dcdefb44bb91b80afc06bf3f2039efe2 (diff)
Minor fixes
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/subsampling_and_spatialsearching@1321 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 74e20cad580a15a344c969a39dcd0bc30efe07a8
Diffstat (limited to 'src/Subsampling')
-rw-r--r--src/Subsampling/include/gudhi/Pick_random_points.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/Subsampling/include/gudhi/Pick_random_points.h b/src/Subsampling/include/gudhi/Pick_random_points.h
index 9a436ee3..1bc1474b 100644
--- a/src/Subsampling/include/gudhi/Pick_random_points.h
+++ b/src/Subsampling/include/gudhi/Pick_random_points.h
@@ -46,8 +46,8 @@ namespace Gudhi {
template <typename Point_container,
typename OutputIterator>
void pick_random_points(Point_container const &points,
- unsigned nbL,
- OutputIterator output_it) {
+ unsigned nbL,
+ OutputIterator output_it) {
#ifdef GUDHI_LM_PROFILING
Gudhi::Clock t;
#endif
@@ -67,14 +67,12 @@ namespace Gudhi {
*output_it++ = points[l];
#ifdef GUDHI_LM_PROFILING
- t.end();
- std::cerr << "Random landmark choice took " << t.num_seconds()
- << " seconds." << std::endl;
+ t.end();
+ std::cerr << "Random landmark choice took " << t.num_seconds()
+ << " seconds." << std::endl;
#endif
-
-
}
} // namespace Gudhi
-#endif // LANDMARK_CHOICE_BY_RANDOM_POINT_H_
+#endif // PICK_RANDOM_POINTS_H_