Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization-gkr/HeuristicLab.Problems.Bandits/IBandit.cs @ 12893

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

#2283: experiments on grammatical optimization algorithms (maxreward instead of avg reward, ...)

File size: 503 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 IBandit {
9    int NumArms { get; }
10    int OptimalExpectedRewardArm { get; } // arm which is optimal for optimization of expected reward
11    int OptimalMaximalRewardArm { get; } // arm which is optimal for optimization of maximal reward
12
13    double Pull(int arm); // pulling an arm returns a reward
14  }
15}
Note: See TracBrowser for help on using the repository browser.