Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization-gkr/HeuristicLab.Algorithms.Bandits/IBanditPolicyActionInfo.cs @ 12893

Last change on this file since 12893 was 12893, checked in by gkronber, 9 years ago

#2283: experiments on grammatical optimization algorithms (maxreward instead of avg reward, ...)

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