Last change
on this file since 11793 was
11770,
checked in by gkronber, 10 years ago
|
#2283: worked on generic sequential search alg with bandit policy as parameter
|
File size:
390 bytes
|
Rev | Line | |
---|
[11770] | 1 | namespace HeuristicLab.Algorithms.Bandits {
|
---|
[11742] | 2 | public interface IBanditPolicyActionInfo {
|
---|
[11732] | 3 | bool Disabled { get; }
|
---|
[11742] | 4 | double Value { get; }
|
---|
| 5 | int Tries { get; }
|
---|
[11732] | 6 | void UpdateReward(double reward);
|
---|
[11747] | 7 | void Disable(double reward);
|
---|
[11732] | 8 | // reset causes the state of the action to be reinitialized (as after constructor-call)
|
---|
| 9 | void Reset();
|
---|
| 10 | void PrintStats();
|
---|
| 11 | }
|
---|
| 12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.