summaryrefslogtreecommitdiffstats
path: root/tests/de_bsm_tag.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/de_bsm_tag.cpp')
-rw-r--r--tests/de_bsm_tag.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/de_bsm_tag.cpp b/tests/de_bsm_tag.cpp
index 4063cfe..cc76f05 100644
--- a/tests/de_bsm_tag.cpp
+++ b/tests/de_bsm_tag.cpp
@@ -18,6 +18,8 @@
#include "shard/ISAMTree.h"
#include "query/rangequery.h"
+#include "framework/reconstruction/BSMPolicy.h"
+
#include <check.h>
using namespace de;
@@ -25,7 +27,8 @@ typedef Rec R;
typedef ISAMTree<R> S;
typedef rq::Query<S> Q;
-typedef DynamicExtension<S, Q, LayoutPolicy::BSM, DeletePolicy::TAGGING, SerialScheduler> DE;
+typedef DynamicExtension<S, Q, DeletePolicy::TAGGING, SerialScheduler> DE;
+ReconstructionPolicy<S,Q> *recon = new BSMPolicy<S,Q>(1000);
#include "include/dynamic_extension.h"