summaryrefslogtreecommitdiff
path: root/src/Hasse_complex/include/gudhi/Hasse_complex.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-10-08 21:48:10 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-10-08 21:48:10 +0000
commit376c2a0dbde0decffb3f37146071368ccb3836a7 (patch)
tree2ce4fc8adbc62217bc373c5ed8753de988b3436f /src/Hasse_complex/include/gudhi/Hasse_complex.h
parentcd2e83819689afd2cd1bc76810282111cf5cd59d (diff)
cpplint fixes
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@845 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 8b15f0805527b494f3a57625de5c69d836b287dd
Diffstat (limited to 'src/Hasse_complex/include/gudhi/Hasse_complex.h')
-rw-r--r--src/Hasse_complex/include/gudhi/Hasse_complex.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Hasse_complex/include/gudhi/Hasse_complex.h b/src/Hasse_complex/include/gudhi/Hasse_complex.h
index c3a84c02..67079687 100644
--- a/src/Hasse_complex/include/gudhi/Hasse_complex.h
+++ b/src/Hasse_complex/include/gudhi/Hasse_complex.h
@@ -26,6 +26,8 @@
#include <boost/iterator/counting_iterator.hpp>
#include <algorithm>
+#include <utility> // for pair
+#include <vector>
namespace Gudhi {
@@ -71,11 +73,10 @@ template < typename FiltrationValue = double
>
class Hasse_complex {
public:
-
typedef Hasse_simplex<Hasse_complex> Hasse_simp;
typedef FiltrationValue Filtration_value;
typedef SimplexKey Simplex_key;
- typedef int Simplex_handle; //index in vector complex_
+ typedef int Simplex_handle; // index in vector complex_
typedef boost::counting_iterator< Simplex_handle > Filtration_simplex_iterator;
typedef boost::iterator_range<Filtration_simplex_iterator> Filtration_simplex_range;
@@ -214,8 +215,8 @@ std::istream& operator>>(std::istream & is
typename Hasse_complex<T1, T2, T3>::Filtration_value max_fil = 0;
int max_dim = -1;
int key = 0;
- while (read_hasse_simplex(is, boundary, fil)) //read all simplices in the file as a list of vertices
- {
+ // read all simplices in the file as a list of vertices
+ while (read_hasse_simplex(is, boundary, fil)) {
// insert every simplex in the simplex tree
hcpx.complex_.push_back(Hasse_simplex< Hasse_complex<T1, T2, T3> >(key, fil, boundary));