diff options
author | David Robillard <d@drobilla.net> | 2011-09-20 06:07:49 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-09-20 06:07:49 +0000 |
commit | 97c4492c9c25f5cc30aa9121ee99829f66a8ffb9 (patch) | |
tree | 20d74080694a1e41a5e923cbd957dad28d1d8ff3 /test | |
parent | 34e607eb63ed5d37dcf1d3399802053fb844f68b (diff) | |
download | zix-97c4492c9c25f5cc30aa9121ee99829f66a8ffb9.tar.gz zix-97c4492c9c25f5cc30aa9121ee99829f66a8ffb9.tar.bz2 zix-97c4492c9c25f5cc30aa9121ee99829f66a8ffb9.zip |
Move children index into separate array (fewer cache misses in patree_find_edge).
git-svn-id: http://svn.drobilla.net/zix/trunk@33 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
Diffstat (limited to 'test')
-rw-r--r-- | test/patree_bench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/patree_bench.c b/test/patree_bench.c index cdd40c8..8af9f9b 100644 --- a/test/patree_bench.c +++ b/test/patree_bench.c @@ -52,7 +52,7 @@ main(int argc, char** argv) return test_fail("Failed to open file %s\n", file); } - size_t max_n_strings = 500000; + size_t max_n_strings = 100000; /* Read input strings */ char** strings = NULL; |