Remove meaningless assertion on very unstable small timings

This commit is contained in:
Simon Giraudot 2021-03-15 09:31:23 +01:00
parent 20162feb3d
commit d58aa73857
1 changed files with 0 additions and 3 deletions

View File

@ -88,9 +88,6 @@ void naive_vs_octree(std::size_t dataset_size) {
// Check that they produce the same answer
assert(octree_nearest == naive_nearest);
// Check that the octree was faster
assert(octree_elapsed_time < naive_elapsed_time);
}
void kdtree_vs_octree(std::size_t dataset_size, std::size_t K) {