source:
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Distributions/IModel.cs
@
14145
Last change on this file since 14145 was 11851, checked in by gkronber, 10 years ago | |
---|---|
File size: 390 bytes |
Rev | Line | |
---|---|---|
[11730] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
5 | using System.Threading.Tasks; | |
6 | ||
7 | namespace HeuristicLab.Algorithms.Bandits { | |
[11732] | 8 | // represents a model for the reward distribution (of an action given a state) |
9 | public interface IModel : ICloneable { | |
[11851] | 10 | double Sample(Random random); |
[11732] | 11 | void Update(double reward); |
[11730] | 12 | void Reset(); |
13 | } | |
14 | } |
Note: See TracBrowser
for help on using the repository browser.