summaryrefslogtreecommitdiff
path: root/src/Alpha_complex
diff options
context:
space:
mode:
Diffstat (limited to 'src/Alpha_complex')
-rw-r--r--src/Alpha_complex/include/gudhi/Alpha_complex.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex.h b/src/Alpha_complex/include/gudhi/Alpha_complex.h
index 7c64b53e..330b3b34 100644
--- a/src/Alpha_complex/include/gudhi/Alpha_complex.h
+++ b/src/Alpha_complex/include/gudhi/Alpha_complex.h
@@ -159,7 +159,6 @@ class Alpha_complex : public Simplex_tree<> {
*
* The type InputPointRange must be a range for which std::begin and
* std::end return input iterators on a Kernel::Point_d.
- * \exception std::invalid_argument In debug mode, if an empty input point range is passed as argument.
*/
template<typename InputPointRange >
Alpha_complex(const InputPointRange& points,
@@ -168,9 +167,6 @@ class Alpha_complex : public Simplex_tree<> {
auto first = std::begin(points);
auto last = std::end(points);
- GUDHI_CHECK((first == last),
- std::invalid_argument("Alpha_complex::Alpha_complex(InputPointRange) - Empty input point range"));
-
if (first != last) {
// point_dimension function initialization
Point_Dimension point_dimension = kernel_.point_dimension_d_object();