mirror of https://github.com/CGAL/cgal
arguments of is_valid cleaned
This commit is contained in:
parent
10e1fe3b4e
commit
c6ea03c4c1
|
|
@ -78,7 +78,7 @@ public:
|
|||
Delaunay_triangulation_3(const Delaunay_triangulation_3<Gt,Tds>
|
||||
& tr)
|
||||
: Triangulation_3<Gt,Tds>(tr)
|
||||
{ CGAL_triangulation_postcondition( is_valid(true) ); }
|
||||
{ CGAL_triangulation_postcondition( is_valid() ); }
|
||||
|
||||
#ifndef CGAL_CFG_NO_MEMBER_TEMPLATES
|
||||
template < class InputIterator >
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ public:
|
|||
Regular_triangulation_3(const Regular_triangulation_3<Gt,Tds> & rt)
|
||||
: Triangulation_3<Gt,Tds>(rt)
|
||||
{
|
||||
CGAL_triangulation_postcondition( is_valid(true) );
|
||||
CGAL_triangulation_postcondition( is_valid() );
|
||||
}
|
||||
|
||||
#ifndef CGAL_CFG_NO_MEMBER_TEMPLATES
|
||||
|
|
|
|||
|
|
@ -186,7 +186,7 @@ public:
|
|||
// the following trivial is_valid allows
|
||||
// the user of derived cell base classes
|
||||
// to add their own purpose checking
|
||||
bool is_valid(bool verbose, int level) const
|
||||
bool is_valid(bool verbose = false, int level = 0) const
|
||||
{return true;}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ public:
|
|||
// the following trivial is_valid allows
|
||||
// the user of derived cell base classes
|
||||
// to add their own purpose checking
|
||||
bool is_valid(bool verbose, int level) const
|
||||
bool is_valid(bool verbose = false, int level = 0) const
|
||||
{
|
||||
//return true;
|
||||
return( cell() != NULL );
|
||||
|
|
|
|||
Loading…
Reference in New Issue