summaryrefslogtreecommitdiff
path: root/src/Tangential_complex/benchmark/benchmark_tc.cpp
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-12-16 17:03:24 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-12-16 17:03:24 +0000
commit47b59d173b6c396a40558ac15fc252e18e035c2c (patch)
tree8f3d49f25d1942f929dfa7ee58510cb6c516fb3c /src/Tangential_complex/benchmark/benchmark_tc.cpp
parent0c85e54d44a95aa7aff3f6d51a587287ce4a88d6 (diff)
parentde0bdf55c16de11d47809dc6f347773b10cc3673 (diff)
Merge last trunk modifications
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@1909 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 9f4f6704025290938a46455fcc488fcb7642567e
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;