Hi Michael,
I implemented a simple Trie lookup tree which is tailored to what we need
in auto-complete [1]. I was studying the LatinLookupTree but it is too
complex and I could not find the problem that causes it to crash in some
cases. Then I figured that implementing a simple, focused lookup tr
On Wed, Jun 5, 2013 at 12:10 PM, Michael Stahl wrote:
> looking at the backtrace it seems the m_pSuggest in some node is invalid
> and points into the woods
>
> i wonder what happens if the child node that is currently pointed to by
> m_pSuggest is somehow removed (via removeKey), does childH
Hi Michael, Bjoern
On Tue, Jun 4, 2013 at 11:52 PM, Michael Stahl wrote:
> hi Tomaž,
>
> i noticed that SwAutoCompleteWord appears to contain 2 different
> auto-complete mechanisms - an old vector m_WordList and a new
> m_LookupTree that was introduced a year ago; is there some