replace assertion by assume

This commit is contained in:
Jane Tournois 2023-07-25 18:03:15 +02:00
parent 184b00a030
commit facd881c19
1 changed files with 2 additions and 2 deletions

View File

@ -821,9 +821,9 @@ private:
for(const auto& [va, vb]: border_edges_set) {
Cell_handle c;
int i, j;
CGAL_assertion_code(bool b =)
CGAL_assume_code(bool b =)
this->tds().is_edge(va, vb, c, i, j);
CGAL_assertion(b);
CGAL_assume(b);
border_edges.emplace_back(c, i, j);
}
#if CGAL_DEBUG_CDT_3