From fa3d8f677b6a30c2115e7d167d4938e293dfad81 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 19 Aug 2018 16:27:07 +0200 Subject: Add StaticBitVec type --- test/test_gray_code_rank.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/test_gray_code_rank.cpp') diff --git a/test/test_gray_code_rank.cpp b/test/test_gray_code_rank.cpp index a421159..8be40f1 100644 --- a/test/test_gray_code_rank.cpp +++ b/test/test_gray_code_rank.cpp @@ -22,6 +22,7 @@ #include "chilbert/BigBitVec.hpp" #include "chilbert/FixBitVec.hpp" #include "chilbert/GrayCodeRank.hpp" +#include "chilbert/StaticBitVec.hpp" #include #include @@ -138,5 +139,14 @@ main() test(ctx); test(ctx); + test, 64, 1>(ctx); + test, 64, 31>(ctx); + test, 64, 32>(ctx); + test, 64, 33>(ctx); + test, 64, 60>(ctx); + test, 64, 64>(ctx); + test, 96, 65>(ctx); + test, 1024, 997>(ctx); + return 0; } -- cgit v1.2.1