removed inner diff output

This commit is contained in:
incredibleLeitman 2020-12-08 11:58:58 +01:00
parent bacf5af6ff
commit 2615c737bb

View File

@ -15,8 +15,6 @@ class Quickhull
public:
static void get_hull(std::list<Point> &input, std::list<Point> &output, bool akl)
{
auto start = std::chrono::high_resolution_clock::now();
// Get leftmost and rightmost point
Point leftmost(INFINITY, 0.0), rightmost(-INFINITY, 0.0);
@ -92,9 +90,6 @@ public:
// Call get_hull_with_line with the left points, as well as with the right points, and the line
get_hull_with_line(points_left, output, line);
get_hull_with_line(points_right, output, line);
auto diff = std::chrono::duration<double, std::milli>(std::chrono::high_resolution_clock::now() - start);
std::cout << "-- inner diff: " << diff.count() << "ms" << std::endl;
}
static void show (std::list<Point> &points, std::list<Point>& hull)