source:
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/IBanditPolicy.cs
@
13792
Last change on this file since 13792 was 11742, checked in by gkronber, 10 years ago | |
---|---|
File size: 409 bytes |
Rev | Line | |
---|---|---|
[11708] | 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 { | |
[11742] | 8 | // this interface represents a policy for bandit problems |
9 | public interface IBanditPolicy { | |
10 | int SelectAction(Random random, IEnumerable<IBanditPolicyActionInfo> actions); | |
11 | IBanditPolicyActionInfo CreateActionInfo(); | |
[11708] | 12 | } |
13 | } |
Note: See TracBrowser
for help on using the repository browser.