From 87a3a5e81a21a4f82cffce21078c464f0546ef1c Mon Sep 17 00:00:00 2001 From: Jarno Niklas Alanko Date: Fri, 10 Aug 2018 15:16:49 +0300 Subject: [PATCH] Comment out broken init_fast --- include/sdsl/select_support_mcl.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/sdsl/select_support_mcl.hpp b/include/sdsl/select_support_mcl.hpp index 3cd826c12..5936e9190 100644 --- a/include/sdsl/select_support_mcl.hpp +++ b/include/sdsl/select_support_mcl.hpp @@ -108,10 +108,11 @@ class select_support_mcl : public select_support template select_support_mcl::select_support_mcl(const bit_vector* f_v):select_support(f_v) { - if (t_pat_len>1 or(vv!=nullptr and vv->size() < 100000)) + // 10.8. 2018 Use init slow until the bug in init_fast is fixed. + //if (t_pat_len>1 or(vv!=nullptr and vv->size() < 100000)) init_slow(vv); - else - init_fast(vv); + //else + // init_fast(vv); return; }