C# Class Lucene.Net.Spatial.Util.ReciprocalFloatFunction

Inheritance: Lucene.Net.Search.Function.ValueSource
ファイルを表示 Open project: paulirwin/lucene.net Class Usage Examples

Protected Properties

Property Type Description
a float
b float
m float
source Lucene.Net.Search.Function.ValueSource

Public Methods

Method Description
Description ( ) : string
Equals ( object o ) : bool
GetHashCode ( ) : int
GetValues ( IndexReader reader ) : DocValues
ReciprocalFloatFunction ( Lucene.Net.Search.Function.ValueSource source, float m, float a, float b ) : System

f(source) = a/(m*float(source)+b)

Method Details

Description() public method

public Description ( ) : string
return string

Equals() public method

public Equals ( object o ) : bool
o object
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

GetValues() public method

public GetValues ( IndexReader reader ) : DocValues
reader Lucene.Net.Index.IndexReader
return DocValues

ReciprocalFloatFunction() public method

f(source) = a/(m*float(source)+b)
public ReciprocalFloatFunction ( Lucene.Net.Search.Function.ValueSource source, float m, float a, float b ) : System
source Lucene.Net.Search.Function.ValueSource
m float
a float
b float
return System

Property Details

a protected_oe property

protected float a
return float

b protected_oe property

protected float b
return float

m protected_oe property

protected float m
return float

source protected_oe property

protected ValueSource,Lucene.Net.Search.Function source
return Lucene.Net.Search.Function.ValueSource