From 09ab60e46ad251fe216c7958ac81eec34d21ed27 Mon Sep 17 00:00:00 2001 From: pdlotko Date: Mon, 27 Mar 2017 20:29:21 +0000 Subject: Adding answers to Marc's comments. git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_stat@2258 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 4ad10b1ec977bb1fcfdab43c4d9ee9ed6ef120f5 --- src/Gudhi_stat/test/persistence_intervals_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Gudhi_stat/test/persistence_intervals_test.cpp') diff --git a/src/Gudhi_stat/test/persistence_intervals_test.cpp b/src/Gudhi_stat/test/persistence_intervals_test.cpp index d46d009b..6dec1bb7 100644 --- a/src/Gudhi_stat/test/persistence_intervals_test.cpp +++ b/src/Gudhi_stat/test/persistence_intervals_test.cpp @@ -103,10 +103,10 @@ BOOST_AUTO_TEST_CASE(check_dominant_intervals) } } -BOOST_AUTO_TEST_CASE(check_histograms_of_lengths) +BOOST_AUTO_TEST_CASE(check_histogram_of_lengths) { Persistence_intervals p( "data/file_with_diagram" ); - std::vector< size_t > histogram = p.histograms_of_lengths( 10 ); + std::vector< size_t > histogram = p.histogram_of_lengths( 10 ); std::vector< size_t > template_histogram; template_histogram.push_back(10); template_histogram.push_back(5); @@ -128,7 +128,7 @@ BOOST_AUTO_TEST_CASE(check_histograms_of_lengths) BOOST_AUTO_TEST_CASE(check_cumulative_histograms_of_lengths) { Persistence_intervals p( "data/file_with_diagram" ); - std::vector< size_t > cumulative_histogram = p.cumulative_histograms_of_lengths( 10 ); + std::vector< size_t > cumulative_histogram = p.cumulative_histogram_of_lengths( 10 ); std::vector< size_t > template_cumulative_histogram; template_cumulative_histogram.push_back(10); template_cumulative_histogram.push_back(15); -- cgit v1.2.3