diff options
author | Jon Layton <me@jonl.io> | 2019-09-24 02:35:15 -0400 |
---|---|---|
committer | Jon Layton <me@jonl.io> | 2019-10-10 15:47:39 -0400 |
commit | 7aad3b68e7e1680870ca70d945eee88f790d6454 (patch) | |
tree | 0c995724c5ddf134f9ae702728db869cc75435aa /src/test | |
parent | d5a770b70d55a5874fbd7796a171de22abbbd342 (diff) |
doc: Doxygen-friendly CuckooCache comments
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/cuckoocache_tests.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/cuckoocache_tests.cpp b/src/test/cuckoocache_tests.cpp index d38ede691a..a3017da3e7 100644 --- a/src/test/cuckoocache_tests.cpp +++ b/src/test/cuckoocache_tests.cpp @@ -10,11 +10,11 @@ /** Test Suite for CuckooCache * - * 1) All tests should have a deterministic result (using insecure rand + * 1. All tests should have a deterministic result (using insecure rand * with deterministic seeds) - * 2) Some test methods are templated to allow for easier testing + * 2. Some test methods are templated to allow for easier testing * against new versions / comparing - * 3) Results should be treated as a regression test, i.e., did the behavior + * 3. Results should be treated as a regression test, i.e., did the behavior * change significantly from what was expected. This can be OK, depending on * the nature of the change, but requires updating the tests to reflect the new * expected behavior. For example improving the hit rate may cause some tests @@ -82,9 +82,9 @@ static double test_cache(size_t megabytes, double load) * * Examples: * - * 1) at load 0.5, we expect a perfect hit rate, so we multiply by + * 1. at load 0.5, we expect a perfect hit rate, so we multiply by * 1.0 - * 2) at load 2.0, we expect to see half the entries, so a perfect hit rate + * 2. at load 2.0, we expect to see half the entries, so a perfect hit rate * would be 0.5. Therefore, if we see a hit rate of 0.4, 0.4*2.0 = 0.8 is the * normalized hit rate. * |