Repository: lucenenet Updated Branches: refs/heads/pcl a5d9e83f8 -> 35e495187
adding BroadWord class and initial test. Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/35e49518 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/35e49518 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/35e49518 Branch: refs/heads/pcl Commit: 35e4951871359be05c3a150557940d04eef1ea17 Parents: a5d9e83 Author: Michael Herndon <[email protected]> Authored: Fri Aug 8 23:47:22 2014 -0400 Committer: Michael Herndon <[email protected]> Committed: Fri Aug 8 23:47:22 2014 -0400 ---------------------------------------------------------------------- src/Lucene.Net.Core/Util/BroadWord.cs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/35e49518/src/Lucene.Net.Core/Util/BroadWord.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Core/Util/BroadWord.cs b/src/Lucene.Net.Core/Util/BroadWord.cs index 239cbe6..89e0c72 100644 --- a/src/Lucene.Net.Core/Util/BroadWord.cs +++ b/src/Lucene.Net.Core/Util/BroadWord.cs @@ -24,9 +24,18 @@ namespace Lucene.Net.Util using Lucene.Net.Support; /// <summary> - /// Methods and constants inspired by the article - /// "Broadword Implementation of Rank/Select Queries" by Sebastiano Vigna, January 30, 2012: + /// /// </summary> + /// <remarks> + /// <para> + /// Methods and constants inspired by the article + /// "Broadword Implementation of Rank/Select Queries" by Sebastiano Vigna, January 30, 2012 which can be + /// found in the book: + /// <see href="http://www.amazon.com/Experimental-Algorithms-International-Provincetown-Proceedings/dp/3540685480"> + /// Experimental Algorithms: 7th International Workshop, WEA 2008 Provincetown, MA, USA, May 30 - June 1, 2008 Proceedings (Lecture Notes in Computer ... Computer Science and General Issues) + /// </see> + /// </para> + /// </remarks> public sealed class BroadWord {
