summaryrefslogtreecommitdiff
path: root/src/Gudhi_stat/utilities/permutation_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Gudhi_stat/utilities/permutation_test.cpp')
-rw-r--r--src/Gudhi_stat/utilities/permutation_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Gudhi_stat/utilities/permutation_test.cpp b/src/Gudhi_stat/utilities/permutation_test.cpp
index 94f92d29..e431026f 100644
--- a/src/Gudhi_stat/utilities/permutation_test.cpp
+++ b/src/Gudhi_stat/utilities/permutation_test.cpp
@@ -62,7 +62,7 @@ int main( int argc , char** argv )
std::vector< Persistence_landscape* > first_collection( first_group.size() );
for ( size_t i = 0 ; i != first_group.size() ; ++i )
{
- std::vector< std::pair< double , double > > diag = read_standard_file( first_group[i].c_str() );
+ std::vector< std::pair< double , double > > diag = read_standard_persistence_file( first_group[i].c_str() );
Persistence_landscape* l = new Persistence_landscape( diag );
first_collection[i] = l;
}
@@ -70,7 +70,7 @@ int main( int argc , char** argv )
std::vector< Persistence_landscape* > second_collection( second_group.size() );
for ( size_t i = 0 ; i != second_group.size() ; ++i )
{
- std::vector< std::pair< double , double > > diag = read_standard_file( second_group[i].c_str() );
+ std::vector< std::pair< double , double > > diag = read_standard_persistence_file( second_group[i].c_str() );
Persistence_landscape* l = new Persistence_landscape( diag );
second_collection[i] = l;
}