1 write to _window
Microsoft.ML.FastTree (1)
Training\Test.cs (1)
294_window = new LinkedList<double>();
6 references to _window
Microsoft.ML.FastTree (6)
Training\Test.cs (6)
307if (_window.Count == _windowSize) 309double outValue = _window.First(); 310_window.RemoveFirst(); 311_window.AddLast(currentValue); 317_window.AddLast(currentValue); 321if (_window.Count == _windowSize &&