2 writes to _max
Microsoft.ML.Core (2)
EntryPoints\ModuleArgs.cs (2)
190
_max
= value;
252
_max
= Convert.ToDouble(_max);
10 references to _max
Microsoft.ML.Core (10)
EntryPoints\ModuleArgs.cs (10)
167
Contracts.Check(
_max
== null || ((IComparable)
_max
).CompareTo(value) != -1,
180
get { return
_max
; }
205
Contracts.Check(
_max
== null || ((IComparable)
_max
).CompareTo(value) == 1,
222
Contracts.Check(
_max
== null,
251
if (
_max
!= null)
252
_max = Convert.ToDouble(
_max
);
270
if (
_max
!= null)
271
pieces.Add($"Max = {
_max
}{optionalTypeSpecifier}");