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; }