Last change
on this file since 13231 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 | |
---|
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 | 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.