Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/IPolicyActionInfo.cs @ 11732

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

#2283: refactoring and bug fixes

File size: 443 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Algorithms.Bandits {
8  public interface IPolicyActionInfo {
9    bool Disabled { get; }
10    void UpdateReward(double reward);
11    void Disable();
12    // reset causes the state of the action to be reinitialized (as after constructor-call)
13    void Reset();
14    void PrintStats();
15  }
16}
Note: See TracBrowser for help on using the repository browser.