mirror of https://github.com/CGAL/cgal
typos
This commit is contained in:
parent
f8d2d3d351
commit
7a5d20a0c5
|
|
@ -1153,15 +1153,17 @@ private:
|
||||||
if(!is_positive(alpha) || !is_positive(offset))
|
if(!is_positive(alpha) || !is_positive(offset))
|
||||||
{
|
{
|
||||||
#ifdef CGAL_AW3_DEBUG
|
#ifdef CGAL_AW3_DEBUG
|
||||||
std::cerr << "Error: invalid input parameters: " << alpha << " and" << offset << std::endl;
|
std::cerr << "Error: invalid input parameters: " << alpha << " and " << offset << std::endl;
|
||||||
#endif
|
#endif
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CGAL_AW3_DEBUG
|
||||||
if(refining && alpha > m_alpha)
|
if(refining && alpha > m_alpha)
|
||||||
std::cerr << "Warning: refining with an alpha greater than the last iteration's!" << std::endl;
|
std::cerr << "Warning: refining with an alpha greater than the last iteration's!" << std::endl;
|
||||||
if(refining && offset != m_offset)
|
if(refining && offset != m_offset)
|
||||||
std::cerr << "Warning: refining with a different offset value!" << std::endl;
|
std::cerr << "Warning: refining with a different offset value!" << std::endl;
|
||||||
|
#endif
|
||||||
|
|
||||||
m_alpha = FT(alpha);
|
m_alpha = FT(alpha);
|
||||||
m_sq_alpha = square(m_alpha);
|
m_sq_alpha = square(m_alpha);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue