From 7cc35e19a3b80245606a4ed4ca95398591c03ce2 Mon Sep 17 00:00:00 2001 From: Tilmann Date: Sat, 12 Aug 2023 13:39:49 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b854215..cd9a6c3 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The indexes fall into four categories, depending on whether they use points or ( Indexes can be created via factories in the interfaces, e.g. `PointMap.Factory.createKdTree(...)`. -**WARNING** *The `Map` implementations are mostly not strict with respect to unique keys. That means they work fine if keys are unique. However, they may not enforce uniqueness (replace entries when the same key is added twice) and instead always add another entry. That means they may effectively act as multimaps.* At the moment, only PH-Tree bases indexes enforce uniqueness and properly overwrite existing keys. +**WARNING** *The `Map` implementations are mostly not strict with respect to unique keys. That means they work fine if keys are unique. However, they may not enforce uniqueness (replace entries when the same key is added twice) and instead always add another entry. That means they may effectively act as multimaps.* At the moment, only PH-Tree based indexes enforce uniqueness and properly overwrite existing keys. Note: - **STR-Trees** are simply R-Trees that are preloaded using the STR algorithm. THis can be done with