Last change
on this file since 12146 was
11806,
checked in by gkronber, 10 years ago
|
#2283: separated value-states from done-states in GenericGrammarPolicy and removed disabling of actions from bandit policies
|
File size:
370 bytes
|
Rev | Line | |
---|
[11770] | 1 | namespace HeuristicLab.Algorithms.Bandits {
|
---|
[11742] | 2 | public interface IBanditPolicyActionInfo {
|
---|
[11806] | 3 | //bool Disabled { get; }
|
---|
[11742] | 4 | double Value { get; }
|
---|
| 5 | int Tries { get; }
|
---|
[11732] | 6 | void UpdateReward(double reward);
|
---|
[11806] | 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 | }
|
---|
| 11 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.