comment out too-strong assertion from vsqr

Signed-off-by: Panagiotis Cheilaris <philaris@cs.ntua.gr>
This commit is contained in:
Panagiotis Cheilaris 2013-09-13 23:10:44 +02:00
parent 86326fd03e
commit 8ad9d9a709
1 changed files with 6 additions and 6 deletions

View File

@ -3431,12 +3431,12 @@ private:
// philaris: I also remove it because of validity tests
//CGAL_assertion(is_p_endp_of_r and is_p_endp_of_t);
// philaris: I have only kept the following weaker one
CGAL_assertion(
same_points(r.source_site(), t.source_site()) or
same_points(r.source_site(), t.target_site()) or
same_points(r.target_site(), t.source_site()) or
same_points(r.target_site(), t.target_site()) );
// philaris: I also remove the following assertion
//CGAL_assertion(
// same_points(r.source_site(), t.source_site()) or
// same_points(r.source_site(), t.target_site()) or
// same_points(r.target_site(), t.source_site()) or
// same_points(r.target_site(), t.target_site()) );
return POSITIVE;
}