diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-01-31 16:16:28 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-01-31 16:16:28 -0500 |
| commit | 3061bfbf1c4b5092fa4234de3105a615fcef18ea (patch) | |
| tree | 4c41cdf3b8e3af6e38ba1c8f283d2e35086cc2af /tests/include/concurrent_extension.h | |
| parent | 30da48151f58803968ca3ef5d42e66a9223d80a4 (diff) | |
| download | dynamic-extension-3061bfbf1c4b5092fa4234de3105a615fcef18ea.tar.gz | |
More updates
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)); } } |