summaryrefslogtreecommitdiff
path: root/src/Collapse/example/rips_persistence_with_sc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Collapse/example/rips_persistence_with_sc.cpp')
-rw-r--r--src/Collapse/example/rips_persistence_with_sc.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Collapse/example/rips_persistence_with_sc.cpp b/src/Collapse/example/rips_persistence_with_sc.cpp
index f16588cf..46ec8eca 100644
--- a/src/Collapse/example/rips_persistence_with_sc.cpp
+++ b/src/Collapse/example/rips_persistence_with_sc.cpp
@@ -29,7 +29,7 @@ public:
doubleVector distances ;
std::pair<std::size_t, std::size_t> e;
for(std::size_t indx = 0; indx < number_of_points; indx++) {
- for (int j = 0; j <= indx; j++) {
+ for (std::size_t j = 0; j <= indx; j++) {
if( j == indx)
distances.push_back(0);
@@ -80,13 +80,11 @@ int main(int argc, char * const argv[]) {
filediag_aft = filediag_aft+"_"+ out_file_name+ ".txt";
- double currentCreationTime = 0.0;
-
Distance_matrix distances;
Distance_matrix *sparse_distances = new Distance_matrix();
- if(manifold == 'f' || manifold =='f') {
+ if(manifold == 'f') {
Gudhi::Points_off_reader<Point> off_reader(in_file_name);
if (!off_reader.is_valid()) {
std::cerr << "Unable to read file " << in_file_name << "\n";