summaryrefslogtreecommitdiff
path: root/src/GudhUI
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-11-23 07:35:46 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-11-23 07:35:46 +0000
commit69907a03283337e76d7763f82250b4e2a6b8f631 (patch)
treec743ba5d114eeb6ab50364038e9d4b11817d7694 /src/GudhUI
parentd3c7bfc6a3a5db3747da5055246c709ceddc09de (diff)
Fix cpplint
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/distance_matrix_in_rips_module@1771 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 994e3bf769d236d230ac2f7e751aa310dabb74bb
Diffstat (limited to 'src/GudhUI')
-rw-r--r--src/GudhUI/utils/Persistence_compute.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/GudhUI/utils/Persistence_compute.h b/src/GudhUI/utils/Persistence_compute.h
index f7048c28..d2973d84 100644
--- a/src/GudhUI/utils/Persistence_compute.h
+++ b/src/GudhUI/utils/Persistence_compute.h
@@ -75,7 +75,7 @@ template<typename SkBlComplex> class Persistence_compute {
using Rips_complex = Gudhi::rips_complex::Rips_complex<Filtration_value>;
using Field_Zp = Gudhi::persistent_cohomology::Field_Zp;
using Persistent_cohomology = Gudhi::persistent_cohomology::Persistent_cohomology<Simplex_tree, Field_Zp>;
-
+
Rips_complex rips_complex(points, params.threshold, euclidean_distance<Filtration_value, Point_t>);
Simplex_tree st;
@@ -87,7 +87,6 @@ template<typename SkBlComplex> class Persistence_compute {
pcoh.compute_persistent_cohomology(params.min_pers);
stream << "persistence: \n";
stream << "p dimension birth death: \n";
-
pcoh.output_diagram(stream);
}
}