summaryrefslogtreecommitdiff
path: root/src/Witness_complex/concept
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-02-01 11:00:06 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-02-01 11:00:06 +0000
commit3a12263ce588039f6b67da06fa87173cc7fa5bae (patch)
tree5f395516273a5c1fd0f9987c526bf3cf52d78bde /src/Witness_complex/concept
parente4a627b0675453fc88d3a43eef3bff663d3f8121 (diff)
Removed some useless features from the concept
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/relaxed-witness@2044 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 3625e06ddb3e5335b45248ea676aac70660d0804
Diffstat (limited to 'src/Witness_complex/concept')
-rw-r--r--src/Witness_complex/concept/Simplicial_complex_for_witness.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/Witness_complex/concept/Simplicial_complex_for_witness.h b/src/Witness_complex/concept/Simplicial_complex_for_witness.h
index 1dee1a57..62a5526c 100644
--- a/src/Witness_complex/concept/Simplicial_complex_for_witness.h
+++ b/src/Witness_complex/concept/Simplicial_complex_for_witness.h
@@ -34,8 +34,8 @@ namespace witness_complex {
struct SimplicialComplexForWitness {
/** Handle to specify a simplex. */
typedef unspecified Simplex_handle;
- /** Handle to specify a vertex. Must be a non-negative integer. */
- typedef unspecified Vertex_handle;
+ // /** Handle to specify a vertex. Must be a non-negative integer. */
+ // typedef unspecified Vertex_handle;
/** \brief Returns a Simplex_hanlde that is different from all simplex handles
* of the simplices. */
@@ -45,26 +45,26 @@ struct SimplicialComplexForWitness {
*/
std::size_t num_vertices();
- /** \brief Iterator over the simplices of the complex,
- * in an arbitrary order.
- *
- * 'value_type' must be 'Simplex_handle'.*/
- typedef unspecified Complex_simplex_range;
-
- /**
- * \brief Returns a range over all the simplices of a
- * complex.
- */
- Complex_simplex_range complex_simplex_range();
-
- /** \brief Iterator over vertices of a simplex.
- *
- * 'value type' must be 'Vertex_handle'.*/
- typedef unspecified Simplex_vertex_range;
-
- /** \brief Returns a range over vertices of a given
- * simplex. */
- Simplex_vertex_range simplex_vertex_range(Simplex_handle const & simplex);
+ // /** \brief Iterator over the simplices of the complex,
+ // * in an arbitrary order.
+ // *
+ // * 'value_type' must be 'Simplex_handle'.*/
+ // typedef unspecified Complex_simplex_range;
+
+ // /**
+ // * \brief Returns a range over all the simplices of a
+ // * complex.
+ // */
+ // Complex_simplex_range complex_simplex_range();
+
+ // /** \brief Iterator over vertices of a simplex.
+ // *
+ // * 'value type' must be 'Vertex_handle'.*/
+ // typedef unspecified Simplex_vertex_range;
+
+ // /** \brief Returns a range over vertices of a given
+ // * simplex. */
+ // Simplex_vertex_range simplex_vertex_range(Simplex_handle const & simplex);
/** \brief Return type of an insertion of a simplex
*/