summaryrefslogtreecommitdiff
path: root/src/Cech_complex
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-04-10 15:03:41 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-04-10 15:03:41 +0000
commitf70b243734ccc904f75937b90a90db45203ba8ec (patch)
tree6019d0433e84587cb84d4fc0ef4a954f2675c340 /src/Cech_complex
parent51ce9b513116f5fed2b4dc109f0b52595a2cd538 (diff)
Change tparam doc from Chech_complex_blocker
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/cechcomplex_vincent@3367 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 717baf604d7c639eabed28f4ad5639c4eac15dc1
Diffstat (limited to 'src/Cech_complex')
-rw-r--r--src/Cech_complex/include/gudhi/Cech_complex_blocker.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Cech_complex/include/gudhi/Cech_complex_blocker.h b/src/Cech_complex/include/gudhi/Cech_complex_blocker.h
index 2ecef9cf..697d2246 100644
--- a/src/Cech_complex/include/gudhi/Cech_complex_blocker.h
+++ b/src/Cech_complex/include/gudhi/Cech_complex_blocker.h
@@ -35,17 +35,17 @@ namespace cech_complex {
/** \internal
* \class Cech_blocker
- * \brief Cech complex blocker.
+ * \brief Čech complex blocker.
*
* \ingroup cech_complex
*
* \details
- * Cech blocker is an oracle constructed from a Cech_complex and a simplicial complex.
+ * Čech blocker is an oracle constructed from a Cech_complex and a simplicial complex.
*
* \tparam SimplicialComplexForProximityGraph furnishes `Simplex_handle` and `Filtration_value` type definition,
* `simplex_vertex_range(Simplex_handle sh)`and `assign_filtration(Simplex_handle sh, Filtration_value filt)` methods.
*
- * \tparam InputPointRange is required by the pointer on Chech_complex for type definition.
+ * \tparam Chech_complex is required by the blocker.
*/
template <typename SimplicialComplexForCech, typename Cech_complex>
class Cech_blocker {
@@ -56,7 +56,7 @@ class Cech_blocker {
using Filtration_value = typename SimplicialComplexForCech::Filtration_value;
public:
- /** \internal \brief Cech complex blocker operator() - the oracle - assigns the filtration value from the simplex
+ /** \internal \brief Čech complex blocker operator() - the oracle - assigns the filtration value from the simplex
* radius and returns if the simplex expansion must be blocked.
* \param[in] sh The Simplex_handle.
* \return true if the simplex radius is greater than the Cech_complex max_radius*/
@@ -77,7 +77,7 @@ class Cech_blocker {
return (radius > cc_ptr_->max_radius());
}
- /** \internal \brief Cech complex blocker constructor. */
+ /** \internal \brief Čech complex blocker constructor. */
Cech_blocker(SimplicialComplexForCech* sc_ptr, Cech_complex* cc_ptr)
: sc_ptr_(sc_ptr),
cc_ptr_(cc_ptr) {