summaryrefslogtreecommitdiff
path: root/src/Tangential_complex/benchmark/benchmark_tc.cpp
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-12-15 15:53:56 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-12-15 15:53:56 +0000
commit8d594c4ab36fca026e7d11a7c214c02104ad7cbc (patch)
treee2e1fcbad52ae6bbf51dff0a8e74df860d0e57cf /src/Tangential_complex/benchmark/benchmark_tc.cpp
parent04f4501b35eaa2bd33393ef2445d038251ba1355 (diff)
parentdc90d55b866591d7776faf0d095572fbe08e73ac (diff)
Merge last trunk modifications
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/subsampling_and_spatialsearching@1881 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 597eb5b036e3e1d7e10fa0aac135cfc49c031962
Diffstat (limited to 'src/Tangential_complex/benchmark/benchmark_tc.cpp')
-rw-r--r--src/Tangential_complex/benchmark/benchmark_tc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Tangential_complex/benchmark/benchmark_tc.cpp b/src/Tangential_complex/benchmark/benchmark_tc.cpp
index 943fcb54..6d6dd548 100644
--- a/src/Tangential_complex/benchmark/benchmark_tc.cpp
+++ b/src/Tangential_complex/benchmark/benchmark_tc.cpp
@@ -161,7 +161,7 @@ typename Kernel, typename OutputIteratorPoints>
bool load_points_from_file(
const std::string &filename,
OutputIteratorPoints points,
- std::size_t only_first_n_points = std::numeric_limits<std::size_t>::max()) {
+ std::size_t only_first_n_points = (std::numeric_limits<std::size_t>::max)()) {
typedef typename Kernel::Point_d Point;
std::ifstream in(filename);
@@ -196,7 +196,7 @@ bool load_points_and_tangent_space_basis_from_file(
OutputIteratorPoints points,
OutputIteratorTS tangent_spaces,
int intrinsic_dim,
- std::size_t only_first_n_points = std::numeric_limits<std::size_t>::max()) {
+ std::size_t only_first_n_points = (std::numeric_limits<std::size_t>::max)()) {
typedef typename Kernel::Point_d Point;
typedef typename Kernel::Vector_d Vector;