/Source Code/Indexer/Score.vb
# · Visual Basic · 11 lines · 4 code · 2 blank · 5 comment · 0 complexity · 7e7c442baa132e5b04b48697ffc55de2 MD5 · raw file
- ''' <summary>
- ''' Stores the score and whether or not there is a match. The "Match" variable is defined because
- ''' it is possible to have matching documents with a score of 0, and there is a need to differentiate
- ''' between documents with a score of 0 and documents that do not match (which have a score of 0).
- ''' </summary>
- Public Class Score
-
- Friend LogRuleScore As Double = 0
- Friend Match As Boolean = False
-
- End Class