summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/include/gudhi
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-10-03 12:54:38 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-10-03 12:54:38 +0000
commitf9b1bc43d775a9d3a608fb62fe40b559a2cb5d25 (patch)
tree60884982d8972093b56302646dc7983c217234b3 /src/Alpha_complex/include/gudhi
parentad0a044bbb906d553ae3f7931d7f4074c503ede2 (diff)
Remove confusing post condition of ctor
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_complex_create_complex@1605 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 8ba221d495b3ab167e3e151af07e68bfcfa015e4
Diffstat (limited to 'src/Alpha_complex/include/gudhi')
-rw-r--r--src/Alpha_complex/include/gudhi/Alpha_complex.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex.h b/src/Alpha_complex/include/gudhi/Alpha_complex.h
index edc5ad25..b0c09b88 100644
--- a/src/Alpha_complex/include/gudhi/Alpha_complex.h
+++ b/src/Alpha_complex/include/gudhi/Alpha_complex.h
@@ -114,7 +114,8 @@ class Alpha_complex {
public:
/** \brief Alpha_complex constructor from an OFF file name.
- * Uses the Delaunay_triangulation_off_reader to construct the Delaunay triangulation required to initialize
+ *
+ * Uses the Points_off_reader to construct the Delaunay triangulation required to initialize
* the Alpha_complex.
*
* Duplicate points are inserted once in the Alpha_complex. This is the reason why the vertices may be not contiguous.
@@ -140,8 +141,6 @@ class Alpha_complex {
*
* The type InputPointRange must be a range for which std::begin and
* std::end return input iterators on a Kernel::Point_d.
- *
- * @post Compare num_simplices with InputPointRange points number (not the same in case of duplicate points).
*/
template<typename InputPointRange >
Alpha_complex(const InputPointRange& points)