Esempio n. 1
0
        public override double UnapplyEventLevel(double epsilon)
        {
            double res = target.UnapplyEventLevel(epsilon);

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