EventForecaster<T, V, F>.withEventMonitor constructor

EventForecaster<T, V, F>.withEventMonitor(
  1. BayesEventMonitor eventMonitor, {
  2. int maxDependencyLevel = 2,
  3. double dependencyNotificationRatio = 0.50,
  4. Random? random,
})

Implementation

EventForecaster.withEventMonitor(this.eventMonitor,
    {this.maxDependencyLevel = 2,
    this.dependencyNotificationRatio = 0.50,
    Random? random})
    : _random = random ?? Random();