/Source Code/Indexer/Score.vb

# · Visual Basic · 11 lines · 4 code · 2 blank · 5 comment · 0 complexity · 7e7c442baa132e5b04b48697ffc55de2 MD5 · raw file

  1. ''' <summary>
  2. ''' Stores the score and whether or not there is a match. The "Match" variable is defined because
  3. ''' it is possible to have matching documents with a score of 0, and there is a need to differentiate
  4. ''' between documents with a score of 0 and documents that do not match (which have a score of 0).
  5. ''' </summary>
  6. Public Class Score
  7. Friend LogRuleScore As Double = 0
  8. Friend Match As Boolean = False
  9. End Class