arguments of is_valid cleaned

This commit is contained in:
Monique Teillaud 1999-10-13 08:43:58 +00:00
parent 10e1fe3b4e
commit c6ea03c4c1
4 changed files with 4 additions and 4 deletions

View File

@ -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 >

View File

@ -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

View File

@ -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;}

View File

@ -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 );