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