summaryrefslogtreecommitdiff
path: root/src/Witness_complex/include
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-02-11 16:07:37 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-02-11 16:07:37 +0000
commit6496035f0c8232469bf652c1047eeb66645c1bd6 (patch)
tree0f0ab44cffae0a897170c6672f38814f5c9a29dd /src/Witness_complex/include
parentb7796215d4eac6b4c43ad70998c3737a6527eebb (diff)
Changed concept's name to CamelCase
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/witness@1018 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: ddc6e2d57b2dd547407e42da44868d1d0658e57c
Diffstat (limited to 'src/Witness_complex/include')
-rw-r--r--src/Witness_complex/include/gudhi/Witness_complex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Witness_complex/include/gudhi/Witness_complex.h b/src/Witness_complex/include/gudhi/Witness_complex.h
index 3e14a623..455e008a 100644
--- a/src/Witness_complex/include/gudhi/Witness_complex.h
+++ b/src/Witness_complex/include/gudhi/Witness_complex.h
@@ -52,7 +52,7 @@ namespace witness_complex {
\brief Constructs the witness complex for the given set of witnesses and landmarks.
\ingroup witness_complex
*/
-template< class Simplicial_complex>
+template< class SimplicialComplex>
class Witness_complex {
private:
struct Active_witness {
@@ -81,7 +81,7 @@ class Witness_complex {
private:
int nbL; // Number of landmarks
- Simplicial_complex& sc; // Simplicial complex
+ SimplicialComplex& sc; // Simplicial complex
public:
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -110,7 +110,7 @@ class Witness_complex {
Witness_complex(KNearestNeighbors const & knn,
int nbL_,
int dim,
- Simplicial_complex & sc_) : nbL(nbL_), sc(sc_) {
+ SimplicialComplex & sc_) : nbL(nbL_), sc(sc_) {
// Construction of the active witness list
int nbW = knn.size();
typeVectorVertex vv;