Last change
on this file since 13234 was
12893,
checked in by gkronber, 9 years ago
|
#2283: experiments on grammatical optimization algorithms (maxreward instead of avg reward, ...)
|
File size:
401 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Algorithms.Bandits {
|
---|
2 | public interface IBanditPolicyActionInfo {
|
---|
3 | //bool Disabled { get; }
|
---|
4 | double MaxReward { get; }
|
---|
5 | double Value { get; }
|
---|
6 | int Tries { get; }
|
---|
7 | void UpdateReward(double reward);
|
---|
8 | //void Disable(double reward);
|
---|
9 | // reset causes the state of the action to be reinitialized (as after constructor-call)
|
---|
10 | void Reset();
|
---|
11 | }
|
---|
12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.