Skip to content

Latest commit

 

History

History
28 lines (14 loc) · 1.05 KB

README.md

File metadata and controls

28 lines (14 loc) · 1.05 KB

Range-tree


Build Status

Multidimentional range-tree with fractional cascading.

Homework for "Advanced data structures" course.

Implementation

Classical range-tree with fractional cascading :)

Tests

Tests are based on QuickCheck library, which allows us to run our implementation on automatically generated test input samples, and so compare it with naive solution.

We have tests for different number dimensions, with different type of coordinates: Double, Small Int and Bool. Last two help to check case when input contains equal points.

Benchamarks

Becnhmarks are written with help of criterion library. Once taking measurements, it provides html report with histograms.

We have benchmarks for build and find functions, each cover different dimensions and different sizes of input point set.

You can consider scripts in bench folder to launch benchmarks.