Update geometry/graham_scan_algorithm.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Lajat5 2021-11-07 23:57:58 +05:30 committed by GitHub
parent 8577fcfe5b
commit 7c3fc8bec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ static void test() {
derived_result = geometry::grahamscan::convexHull(points, points.size());
std::cout << "Test#1...";
std::cout << "1st test: ";
for (int i = 0; i < expected_result.size(); i++) {
assert(derived_result[i].x == expected_result[i].x);
assert(derived_result[i].y == expected_result[i].y);