mirror of https://github.com/CGAL/cgal
Reduce quality limit
This commit is contained in:
parent
0f0de6d81e
commit
2570d75eb1
|
|
@ -225,7 +225,7 @@ void assert_quality (const std::vector<Point_3>& points, const Fitted& fitted)
|
||||||
std::cerr << "mean distance = " << mean_dist << std::endl;
|
std::cerr << "mean distance = " << mean_dist << std::endl;
|
||||||
|
|
||||||
CGAL_assertion_code
|
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);
|
CGAL_assertion (mean_dist < limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue