Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/IBanditPolicy.cs @ 11745

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

#2283 refactoring

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