Skip to content

Commit

Permalink
Moved convex hull to geometry algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Nov 22, 2024
1 parent fe31b12 commit 09235df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "../../../third_party/catch.hpp"
#include "../../../src/algorithms/sorting/convex_hull.h"
#include "../../../src/algorithms/geometry/convex_hull.h"

TEST_CASE("Testing convex hull with graham's scan [1]") {
std::vector<std::pair<int, int> > points = { {0, 3}, {1, 1}, {2, 2}, {4, 4}, {0, 0}, {1, 2}, {3, 1}, {3, 3}, {2, 4}, {4, 0} };
Expand Down

0 comments on commit 09235df

Please sign in to comment.