simongog / sdsl-lite

Succinct Data Structure Library 2.0
Other
2.2k stars 349 forks source link

csa_wt select in suffix_array_helper.hpp #426

Open ame9yu opened 4 years ago

ame9yu commented 4 years ago

I was calling the select function for csa_wt from the helper file and I got the following error:

/home/mydir/include/sdsl/suffix_array_helper.hpp:459:26: error: ‘const class sdsl::csa_wt<>’ has no member named ‘select’; did you mean ‘select_bwt’? return m_csa.select(i, c);


select_bwt

As seen from the declaration of csa_wt.hpp, the name of the select function of csa_wt is select_bwt.

Thanks!