Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2283: separated value-states from done-states in GenericGrammarPolicy and removed disabling of actions from bandit policies

File size: 370 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  }
11}
Note: See TracBrowser for help on using the repository browser.