From 477eb2e8c151b37c1cb3a4a452693674cf7f1ca2 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Fri, 4 Jan 2013 11:57:03 +0100 Subject: [PATCH] comments --- src/rcldb/expansiondbs.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/rcldb/expansiondbs.h b/src/rcldb/expansiondbs.h index dd819826..e1f26244 100644 --- a/src/rcldb/expansiondbs.h +++ b/src/rcldb/expansiondbs.h @@ -22,10 +22,15 @@ #include +/** Specialization and overall creation code for the term expansion mechanism + * defined in synfamily.h + */ namespace Rcl { /** A Capitals/Diacritics removal functor for using with - * XapComputableSynFamMember */ + * XapComputableSynFamMember. The input term transformation always uses + * UNACFOLD. Post-expansion filtering uses either UNAC or FOLD + */ class SynTermTransUnac : public SynTermTrans { public: /** Constructor @@ -46,9 +51,7 @@ public: UnacOp m_op; }; -/** Walk the Xapian term list and create all the expansion dbs in one go. - * - */ +/** Walk the Xapian term list and create all the expansion dbs in one go. */ extern bool createExpansionDbs(Xapian::WritableDatabase& wdb, const std::vector& langs); }