Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/IBanditPolicyActionInfo.cs @ 11793

Last change on this file since 11793 was 11770, checked in by gkronber, 10 years ago

#2283: worked on generic sequential search alg with bandit policy as parameter

File size: 390 bytes
Line 
1namespace HeuristicLab.Algorithms.Bandits {
2  public interface IBanditPolicyActionInfo {
3    bool Disabled { get; }
4    double Value { get; }
5    int Tries { get; }
6    void UpdateReward(double reward);
7    void Disable(double reward);
8    // reset causes the state of the action to be reinitialized (as after constructor-call)
9    void Reset();
10    void PrintStats();
11  }
12}
Note: See TracBrowser for help on using the repository browser.