summaryrefslogtreecommitdiff
path: root/src/Subsampling/include/gudhi
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-09-20 09:59:15 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-09-20 09:59:15 +0000
commite8183d76c99eac5458d8f72cb4479cc680c6a6c4 (patch)
tree4fc4427f5b1974244b31bd44c2c2cf56c930e81b /src/Subsampling/include/gudhi
parentd38ddb2d2b6943e1e9b26694ac624f85263ad24b (diff)
Changed the names of files as well
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/subsampling_and_spatialsearching@1514 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: df3b82dc1d07b5d51b1c1bed4b5abd823129d4a8
Diffstat (limited to 'src/Subsampling/include/gudhi')
-rw-r--r--src/Subsampling/include/gudhi/choose_n_farthest_points.h (renamed from src/Subsampling/include/gudhi/choose_by_farthest_point.h)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Subsampling/include/gudhi/choose_by_farthest_point.h b/src/Subsampling/include/gudhi/choose_n_farthest_points.h
index b09192d9..b999213e 100644
--- a/src/Subsampling/include/gudhi/choose_by_farthest_point.h
+++ b/src/Subsampling/include/gudhi/choose_n_farthest_points.h
@@ -20,8 +20,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef CHOOSE_BY_FARTHEST_POINT_H_
-#define CHOOSE_BY_FARTHEST_POINT_H_
+#ifndef CHOOSE_N_FARTHEST_POINTS_H_
+#define CHOOSE_N_FARTHEST_POINTS_H_
#include <boost/range.hpp>
@@ -54,7 +54,7 @@ namespace subsampling {
template < typename Kernel,
typename Point_container,
typename OutputIterator>
- void choose_by_farthest_point( Kernel const &k,
+ void choose_n_farthest_points( Kernel const &k,
Point_container const &input_pts,
unsigned final_size,
unsigned starting_point,
@@ -105,7 +105,7 @@ namespace subsampling {
template < typename Kernel,
typename Point_container,
typename OutputIterator>
- void choose_by_farthest_point( Kernel& k,
+ void choose_n_farthest_points( Kernel& k,
Point_container const &input_pts,
int final_size,
OutputIterator output_it)
@@ -115,11 +115,11 @@ namespace subsampling {
std::mt19937 gen(rd());
std::uniform_int_distribution<> dis(1, 6);
int starting_point = dis(gen);
- choose_by_farthest_point(k, input_pts, final_size, starting_point, output_it);
+ choose_n_farthest_points(k, input_pts, final_size, starting_point, output_it);
}
} // namespace subsampling
} // namespace Gudhi
-#endif // CHOOSE_BY_FARTHEST_POINT_H_
+#endif // CHOOSE_N_FARTHEST_POINTS_H_