We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c7b78c commit dc2dd5bCopy full SHA for dc2dd5b
rtree/hilbert/tree.go
@@ -14,6 +14,21 @@ See the License for the specific language governing permissions and
14
limitations under the License.
15
*/
16
17
+/*
18
+Package hilbert implements a Hilbert R-tree based on PALM principles
19
+to improve multithreaded performance. This package is not quite complete
20
+and some optimization and delete codes remain to be completed.
21
+
22
+This serves as a potential replacement for the interval tree and
23
+rangetree.
24
25
+Benchmarks:
26
+BenchmarkBulkAddPoints-8 500 2589270 ns/op
27
+BenchmarkBulkUpdatePoints-8 2000 1212641 ns/op
28
+BenchmarkPointInsertion-8 200000 9135 ns/op
29
+BenchmarkQueryPoints-8 500000 3122 ns/op
30
31
+*/
32
package hilbert
33
34
import (
0 commit comments