public override double UnapplyEventLevel(double epsilon) { double res = target.UnapplyEventLevel(epsilon); table[key] -= res; maximum[0] = table.Values.Max(); return(res); }
private void unapplyEventLevelAlgorithms() { foreach (StreamingAlgorithm <T> alg in activeAlgorithms) { if (alg is StreamingEventAlgorithm <T> ) { agent.UnapplyEventLevel(alg.Epsilon); } } }