From fa351042bc425f0437bfb50d09220bedbc257948 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Mon, 30 Jul 2012 23:11:30 +0200 Subject: LookupTree for fast autocompletion lookups (by Nico Weyand). LookupTree is a tree structure for fast autocompletion lookups. Additionally the tree structure stores word probabilities, so each autocompletion request returns a result with highest probability. LatinLookupTree is an implementation which was designed to be even faster and more efficient latin text, however it works with any kind of unicode strings. The tree structure was coded by Nico Weyand, Unicode strings support and conversion to Libreoffice code structure was done by me. Change-Id: I6549ee45d0952407b8a070f30ed0598fcb420aa7 --- editeng/Module_editeng.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'editeng/Module_editeng.mk') diff --git a/editeng/Module_editeng.mk b/editeng/Module_editeng.mk index b7670989d4ba..eff4df4ce916 100644 --- a/editeng/Module_editeng.mk +++ b/editeng/Module_editeng.mk @@ -2,7 +2,7 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# +# # Copyright 2000, 2011 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite @@ -39,6 +39,7 @@ $(eval $(call gb_Module_add_targets,editeng,\ $(eval $(call gb_Module_add_check_targets,editeng,\ CppunitTest_editeng_core \ CppunitTest_editeng_borderline \ + CppunitTest_editeng_lookuptree \ )) # add any subsequent checks (e.g. complex tests) here -- cgit