aboutsummaryrefslogtreecommitdiffstats
path: root/sample/she_make_dlp_table.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sample/she_make_dlp_table.cpp')
-rw-r--r--sample/she_make_dlp_table.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sample/she_make_dlp_table.cpp b/sample/she_make_dlp_table.cpp
index 6b57999..41f18e2 100644
--- a/sample/she_make_dlp_table.cpp
+++ b/sample/she_make_dlp_table.cpp
@@ -34,13 +34,13 @@ void run(const Param& param)
switch (param.group) {
case 1:
- makeTable(param, "g1", SHE::PhashTbl_, SHE::P_);
+ makeTable(param, "g1", getHashTableG1(), SHE::P_);
break;
case 2:
- makeTable(param, "g2", SHE::QhashTbl_, SHE::Q_);
+ makeTable(param, "g2", getHashTableG2(), SHE::Q_);
break;
case 3:
- makeTable(param, "gt", SHE::ePQhashTbl_, SHE::ePQ_);
+ makeTable(param, "gt", getHashTableGT(), SHE::ePQ_);
break;
default:
throw cybozu::Exception("bad group") << param.group;