summaryrefslogtreecommitdiff
path: root/src
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
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')
-rw-r--r--src/Witness_complex/concept/Simplicial_complex.h2
-rw-r--r--src/Witness_complex/include/gudhi/Witness_complex.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Witness_complex/concept/Simplicial_complex.h b/src/Witness_complex/concept/Simplicial_complex.h
index 9e9f2ff8..74d60388 100644
--- a/src/Witness_complex/concept/Simplicial_complex.h
+++ b/src/Witness_complex/concept/Simplicial_complex.h
@@ -31,7 +31,7 @@ namespace witness_complex {
* for a type to implement a simplicial complex,
* used for example to build a 'Witness_complex'.
*/
-struct Simplicial_complex {
+struct SimplicialComplex {
/** Handle to specify a simplex. */
typedef unspecified Simplex_handle;
/** Handle to specify a vertex. Must be a non-negative integer. */
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;