Reduce quality limit

This commit is contained in:
Simon Giraudot 2020-10-07 10:22:32 +02:00
parent 0f0de6d81e
commit 2570d75eb1
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ void assert_quality (const std::vector<Point_3>& points, const Fitted& fitted)
std::cerr << "mean distance = " << mean_dist << std::endl;
CGAL_assertion_code
(double limit = 1e-4 * std::sqrt (CGAL::squared_distance (points.front(), points.back())));
(double limit = 1e-3 * std::sqrt (CGAL::squared_distance (points.front(), points.back())));
CGAL_assertion (mean_dist < limit);
}