1 write to _active
Microsoft.ML.FastTree (1)
Dataset\FeatureFlock.cs (1)
82
_active
= new bool[features];
10 references to _active
Microsoft.ML.FastTree (10)
Dataset\FeatureFlock.cs (10)
113
Contracts.Assert(
_active
.Length == Flock.Count);
117
for (int f = 0; f <
_active
.Length; ++f)
118
_active
[f] = true;
121
Array.Copy(active, featureOffset,
_active
, 0,
_active
.Length);
150
Contracts.Assert(
_active
.Length == other.
_active
.Length);
154
for (int f = 0; f <
_active
.Length; ++f)
155
Contracts.Assert(
_active
[f] == other.
_active
[f]);