summaryrefslogtreecommitdiff
path: root/src/Witness_complex
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-02-13 11:13:16 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-02-13 11:13:16 +0000
commit0473df92a6f4d4253c44046b13bf6aba254987f6 (patch)
tree41c0d6cef60c95c6e230e2a05766de231dd8783b /src/Witness_complex
parentbc2a24597b59d0e66856c97465310759ada80bd0 (diff)
Hid the Active_witness classes from doc
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/relaxed-witness@2068 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: e37c1486076cf5a1699c643ac71db22934944eca
Diffstat (limited to 'src/Witness_complex')
-rw-r--r--src/Witness_complex/include/gudhi/Active_witness/Active_witness.h8
-rw-r--r--src/Witness_complex/include/gudhi/Active_witness/Active_witness_iterator.h12
2 files changed, 10 insertions, 10 deletions
diff --git a/src/Witness_complex/include/gudhi/Active_witness/Active_witness.h b/src/Witness_complex/include/gudhi/Active_witness/Active_witness.h
index 08762fb3..bb6e1e6f 100644
--- a/src/Witness_complex/include/gudhi/Active_witness/Active_witness.h
+++ b/src/Witness_complex/include/gudhi/Active_witness/Active_witness.h
@@ -31,10 +31,10 @@ namespace Gudhi {
namespace witness_complex {
- // /** \class Active_witness
- // * \brief Class representing a list of nearest neighbors to a given witness.
- // * \details Every element is a pair of a landmark identifier and the squared distance to it.
- // */
+ /* \class Active_witness
+ * \brief Class representing a list of nearest neighbors to a given witness.
+ * \details Every element is a pair of a landmark identifier and the squared distance to it.
+ */
template< typename Id_distance_pair,
typename INS_range >
class Active_witness {
diff --git a/src/Witness_complex/include/gudhi/Active_witness/Active_witness_iterator.h b/src/Witness_complex/include/gudhi/Active_witness/Active_witness_iterator.h
index d6ea6403..7f48faa4 100644
--- a/src/Witness_complex/include/gudhi/Active_witness/Active_witness_iterator.h
+++ b/src/Witness_complex/include/gudhi/Active_witness/Active_witness_iterator.h
@@ -30,12 +30,12 @@ namespace Gudhi {
namespace witness_complex {
- // /** \brief Iterator in the nearest landmark list.
- // * \details After the iterator reaches the end of the list,
- // * the list is augmented by a (nearest landmark, distance) pair if possible.
- // * If all the landmarks are present in the list, iterator returns the specific end value
- // * of the corresponding 'Active_witness' object.
- // */
+/* \brief Iterator in the nearest landmark list.
+ * \details After the iterator reaches the end of the list,
+ * the list is augmented by a (nearest landmark, distance) pair if possible.
+ * If all the landmarks are present in the list, iterator returns the specific end value
+ * of the corresponding 'Active_witness' object.
+ */
template< typename Active_witness,
typename Id_distance_pair,