rename and undef macro

This commit is contained in:
Sébastien Loriot 2016-06-28 17:47:42 +02:00
parent b6505b6e91
commit 174b1c3c7d
1 changed files with 4 additions and 2 deletions

View File

@ -49,7 +49,7 @@
#include <iostream>
#include <limits>
#define EPS 1e-15
#define CGAL_EPS 1e-15
namespace CGAL {
namespace OTR_2 {
@ -1034,7 +1034,7 @@ public:
return false;
}
if ((std::max)(Dac, Dbd) + EPS < Dbc)
if ((std::max)(Dac, Dbd) + CGAL_EPS < Dbc)
{
/*
std::cerr.precision(10);
@ -1079,4 +1079,6 @@ public:
} } //namespace CGAL
#undef CGAL_EPS
#endif // CGAL_RECONSTRUCTION_TRIANGULATION_2_H