diff options
Diffstat (limited to 'tests/include/concurrent_extension.h')
| -rw-r--r-- | tests/include/concurrent_extension.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/tests/include/concurrent_extension.h b/tests/include/concurrent_extension.h index fa669d2..f6d01fd 100644 --- a/tests/include/concurrent_extension.h +++ b/tests/include/concurrent_extension.h @@ -37,21 +37,19 @@ -using namespace de; -typedef Rec R; -typedef ISAMTree<R> S; -typedef rq::Query<S> Q; -typedef DynamicExtension<S, Q, DeletePolicy::TOMBSTONE, SerialScheduler> DE; -typedef de::DEConfiguration<S, Q, DeletePolicy::TOMBSTONE, SerialScheduler> CONF; +// using namespace de; +// typedef Rec R; +// typedef ISAMTree<R> S; +// typedef rq::Query<S> Q; +// typedef DynamicExtension<S, Q, DeletePolicy::TOMBSTONE, SerialScheduler> DE; +// typedef de::DEConfiguration<S, Q, DeletePolicy::TOMBSTONE, SerialScheduler> CONF; static CONF create_config(size_t type=1) { if (type == 1) { auto recon = std::make_unique<LevelingPolicy<S, Q>>(2, 1000); - return CONF(std::move(recon)); } else { auto recon2 = std::make_unique<LevelingPolicy<S, Q>>(4, 10000); - CONF configuration2 = CONF(std::move(recon2)); return CONF(std::move(recon2)); } } |