Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Distributions/IModel.cs @ 11851

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

#2283: solution reorganization

File size: 390 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace 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.