Skip to content

Commit

Permalink
Perform tests non-linearly
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Aug 28, 2020
1 parent f570b32 commit ea73c33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Octree/benchmark/Octree/construction.cpp
Expand Up @@ -12,7 +12,7 @@ int main(int argc, char **argv) {

file << "Number of Points,Build Time (ms) \n";

for (size_t num_points = 10; num_points < 10000; ++num_points) {
for (size_t num_points = 10; num_points < 10000; num_points *= 1.1) {

std::cout << num_points << std::endl;

Expand Down
2 changes: 1 addition & 1 deletion Octree/benchmark/Octree/nearest_neighbor.cpp
Expand Up @@ -12,7 +12,7 @@ int main(int argc, char **argv) {

file << "Number of Points,Search Time (ms) \n";

for (size_t num_points = 10; num_points < 10000; ++num_points) {
for (size_t num_points = 10; num_points < 10000; num_points *= 1.1) {

std::cout << num_points << std::endl;

Expand Down

0 comments on commit ea73c33

Please sign in to comment.