Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/Models/IModel.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: 428 bytes
RevLine 
[11730]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Algorithms.Bandits {
[11732]8  // represents a model for the reward distribution (of an action given a state)
9  public interface IModel : ICloneable {
10    double SampleExpectedReward(Random random);
11    void Update(double reward);
[11730]12    void Reset();
13    void PrintStats();
14  }
15}
Note: See TracBrowser for help on using the repository browser.