Comment out an assertion which is too long.

This commit is contained in:
Guillaume Damiand 2018-11-20 16:30:30 +01:00
parent dd3309f14f
commit 4b62197c72
1 changed files with 2 additions and 2 deletions

View File

@ -361,7 +361,7 @@ public:
/// of the first dart)
std::size_t next_positive_turn(std::size_t i) const
{
CGAL_assertion(is_valid());
// CGAL_assertion(is_valid());
CGAL_assertion(i<m_path.size());
CGAL_assertion (is_closed() || i<length()-1);
@ -371,7 +371,7 @@ public:
/// Same than next_positive_turn but turning in reverse orientation around vertex.
std::size_t next_negative_turn(std::size_t i) const
{
CGAL_assertion(is_valid());
// CGAL_assertion(is_valid());
CGAL_assertion(i<m_path.size());
CGAL_assertion (is_closed() || i<length()-1);