source:
branches/HeuristicLab.Problems.GrammaticalOptimization-gkr/HeuristicLab.Distributions/IModel.cs
@
12509
Last change on this file since 12509 was 11851, checked in by gkronber, 10 years ago | |
---|---|
File size: 390 bytes |
Line | |
---|---|
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 { |
8 | // represents a model for the reward distribution (of an action given a state) |
9 | public interface IModel : ICloneable { |
10 | double Sample(Random random); |
11 | void Update(double reward); |
12 | void Reset(); |
13 | } |
14 | } |
Note: See TracBrowser
for help on using the repository browser.