aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_hilbert.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_hilbert.cpp')
-rw-r--r--test/test_hilbert.cpp46
1 files changed, 23 insertions, 23 deletions
diff --git a/test/test_hilbert.cpp b/test/test_hilbert.cpp
index 0daf749..3abcdd5 100644
--- a/test/test_hilbert.cpp
+++ b/test/test_hilbert.cpp
@@ -19,8 +19,8 @@
#include "test_utils.hpp"
-#include "chilbert/BigBitVec.hpp"
-#include "chilbert/FixBitVec.hpp"
+#include "chilbert/DynamicBitVec.hpp"
+#include "chilbert/SmallBitVec.hpp"
#include "chilbert/Hilbert.hpp"
#include "chilbert/StaticBitVec.hpp"
@@ -171,17 +171,17 @@ main()
{
Context ctx;
- test_standard<chilbert::CFixBitVec, 4, 2>(ctx);
- test_standard<chilbert::CFixBitVec, 32, 2>(ctx);
- test_standard<chilbert::CFixBitVec, 16, 4>(ctx);
- test_standard<chilbert::CFixBitVec, 8, 8>(ctx);
- test_standard<chilbert::CFixBitVec, 4, 16>(ctx);
- test_standard<chilbert::CFixBitVec, 2, 32>(ctx);
- test_standard<chilbert::CFixBitVec, 1, 64>(ctx);
+ test_standard<chilbert::SmallBitVec, 4, 2>(ctx);
+ test_standard<chilbert::SmallBitVec, 32, 2>(ctx);
+ test_standard<chilbert::SmallBitVec, 16, 4>(ctx);
+ test_standard<chilbert::SmallBitVec, 8, 8>(ctx);
+ test_standard<chilbert::SmallBitVec, 4, 16>(ctx);
+ test_standard<chilbert::SmallBitVec, 2, 32>(ctx);
+ test_standard<chilbert::SmallBitVec, 1, 64>(ctx);
- test_standard<chilbert::CBigBitVec, 4, 65>(ctx);
- test_standard<chilbert::CBigBitVec, 32, 64>(ctx);
- test_standard<chilbert::CBigBitVec, 63, 128>(ctx);
+ test_standard<chilbert::DynamicBitVec, 4, 65>(ctx);
+ test_standard<chilbert::DynamicBitVec, 32, 64>(ctx);
+ test_standard<chilbert::DynamicBitVec, 63, 128>(ctx);
test_standard<chilbert::StaticBitVec<4 * 2>, 4, 2>(ctx);
test_standard<chilbert::StaticBitVec<32 * 2>, 32, 2>(ctx);
@@ -194,17 +194,17 @@ main()
test_standard<chilbert::StaticBitVec<32 * 64>, 32, 64>(ctx);
test_standard<chilbert::StaticBitVec<63 * 128>, 63, 128>(ctx);
- test_compact<chilbert::CFixBitVec, 4, 2>(ctx);
- test_compact<chilbert::CFixBitVec, 32, 2>(ctx);
- test_compact<chilbert::CFixBitVec, 16, 4>(ctx);
- test_compact<chilbert::CFixBitVec, 8, 8>(ctx);
- test_compact<chilbert::CFixBitVec, 4, 16>(ctx);
- test_compact<chilbert::CFixBitVec, 2, 32>(ctx);
- test_compact<chilbert::CFixBitVec, 1, 64>(ctx);
-
- test_compact<chilbert::CBigBitVec, 4, 65>(ctx);
- test_compact<chilbert::CBigBitVec, 32, 64>(ctx);
- test_compact<chilbert::CBigBitVec, 63, 128>(ctx);
+ test_compact<chilbert::SmallBitVec, 4, 2>(ctx);
+ test_compact<chilbert::SmallBitVec, 32, 2>(ctx);
+ test_compact<chilbert::SmallBitVec, 16, 4>(ctx);
+ test_compact<chilbert::SmallBitVec, 8, 8>(ctx);
+ test_compact<chilbert::SmallBitVec, 4, 16>(ctx);
+ test_compact<chilbert::SmallBitVec, 2, 32>(ctx);
+ test_compact<chilbert::SmallBitVec, 1, 64>(ctx);
+
+ test_compact<chilbert::DynamicBitVec, 4, 65>(ctx);
+ test_compact<chilbert::DynamicBitVec, 32, 64>(ctx);
+ test_compact<chilbert::DynamicBitVec, 63, 128>(ctx);
test_compact<chilbert::StaticBitVec<4 * 2>, 4, 2>(ctx);
test_compact<chilbert::StaticBitVec<32 * 2>, 32, 2>(ctx);