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
|
Rev | Line | |
---|
[11770] | 1 | namespace HeuristicLab.Algorithms.Bandits {
|
---|
[11742] | 2 | public interface IBanditPolicyActionInfo {
|
---|
[11806] | 3 | //bool Disabled { get; }
|
---|
[12893] | 4 | double MaxReward { get; }
|
---|
[11742] | 5 | double Value { get; }
|
---|
| 6 | int Tries { get; }
|
---|
[11732] | 7 | void UpdateReward(double reward);
|
---|
[11806] | 8 | //void Disable(double reward);
|
---|
[11732] | 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.