Update grid parameter

This commit is contained in:
Andrey Chulkov 2020-03-22 16:50:05 +03:00
parent d885b8f4e3
commit 87ca75c731
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ private:
GridRoot grid;
static constexpr size_t kMinIntersections = 1;
static constexpr size_t kMaxDepth = 7;
static constexpr size_t kMaxDepth = 10;
};
/** Smart implementation of the polygon dictionary. Uses BucketsPolygonIndex. */

View File

@ -71,7 +71,7 @@ public:
/** When a cell is split every side is split into kSplit pieces producing kSplit * kSplit equal smaller cells. */
static constexpr size_t kSplit = 2;
static constexpr size_t kMultiProcessingDepth = 3;
static constexpr size_t kMultiProcessingDepth = 4;
private:
std::unique_ptr<ICell> root = nullptr;