SloppyPhraseScorer.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:2k
源码类别:

搜索引擎

开发平台:

C#

  1. /*
  2.  * Copyright 2004 The Apache Software Foundation
  3.  * 
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  * 
  8.  * http://www.apache.org/licenses/LICENSE-2.0
  9.  * 
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. using System;
  17. using TermPositions = Lucene.Net.Index.TermPositions;
  18. namespace Lucene.Net.Search
  19. {
  20. sealed class SloppyPhraseScorer : PhraseScorer
  21. {
  22. private int slop;
  23. internal SloppyPhraseScorer(Weight weight, TermPositions[] tps, int[] positions, Similarity similarity, int slop, byte[] norms) : base(weight, tps, positions, similarity, norms)
  24. {
  25. this.slop = slop;
  26. }
  27. protected internal override float PhraseFreq()
  28. {
  29. pq.Clear();
  30. int end = 0;
  31. for (PhrasePositions pp = first; pp != null; pp = pp.next)
  32. {
  33. pp.FirstPosition();
  34. if (pp.position > end)
  35. end = pp.position;
  36. pq.Put(pp); // build pq from list
  37. }
  38. float freq = 0.0f;
  39. bool done = false;
  40. do 
  41. {
  42. PhrasePositions pp = (PhrasePositions) pq.Pop();
  43. int start = pp.position;
  44. int next = ((PhrasePositions) pq.Top()).position;
  45. for (int pos = start; pos <= next; pos = pp.position)
  46. {
  47. start = pos; // advance pp to min window
  48. if (!pp.NextPosition())
  49. {
  50. done = true; // ran out of a term -- done
  51. break;
  52. }
  53. }
  54. int matchLength = end - start;
  55. if (matchLength <= slop)
  56. freq += GetSimilarity().SloppyFreq(matchLength); // score match
  57. if (pp.position > end)
  58. end = pp.position;
  59. pq.Put(pp); // restore pq
  60. }
  61. while (!done);
  62. return freq;
  63. }
  64. }
  65. }