changes to skiplist and tests

This commit is contained in:
Dominik Tomičević 2015-07-04 11:55:34 +02:00
parent 79ec770af3
commit bae1462f39
2 changed files with 5 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#include <atomic>
#include <mutex>
#include "utils/sync/spinlock.hpp"
#include "sync/spinlock.hpp"
// concurrent skiplist node based on the implementation described in
// "A Provably Correct Scalable Concurrent Skip List"

View File

@ -42,3 +42,7 @@ TEST_CASE("New height distribution must be approx. 1/2 1/4 1/8 ...")
REQUIRE(relative_error < error_margin);
}
}
TEST_CASE("You can add an item to the skiplist")
{
}