2 writes to _max
Microsoft.ML.Data (2)
Transforms\RangeFilter.cs (2)
125
_max
= options.Max ?? Double.PositiveInfinity;
159
_max
= ctx.Reader.ReadDouble();
6 references to _max
Microsoft.ML.Data (6)
Transforms\RangeFilter.cs (6)
126
if (!(_min <=
_max
))
130
_includeMax = options.IncludeMax ?? (options.Max == null || (_type is KeyDataViewType &&
_max
>= 1));
160
if (!(_min <=
_max
))
193
Host.Assert(_min <
_max
);
195
ctx.Writer.Write(
_max
);
279
_max = Parent.
_max
;