-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
I needed to do this:
Open the file:bash
vim include/sdsl/louds_tree.hpp # Or your preferred editor
Go to line 182 and change:cpp
// Before (broken):
util::swap_support(m_bv_select1, tree.m_select1, &m_bv, &(tree.m_bv));
// After (fixed):
util::swap_support(m_bv_select1, tree.m_bv_select1, &m_bv, &(tree.m_bv));
Also fix line 183 (for symmetry — it likely has the same issue with m_select0):cpp
// Before:
util::swap_support(m_bv_select0, tree.m_select0, &m_bv, &(tree.m_bv));
// After:
util::swap_support(m_bv_select0, tree.m_bv_select0, &m_bv, &(tree.m_bv));
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels