Last change
on this file since 11987 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
|
Line | |
---|
1 | namespace HeuristicLab.Algorithms.Bandits {
|
---|
2 | public interface IBanditPolicyActionInfo {
|
---|
3 | //bool Disabled { get; }
|
---|
4 | double Value { get; }
|
---|
5 | int Tries { get; }
|
---|
6 | void UpdateReward(double reward);
|
---|
7 | //void Disable(double reward);
|
---|
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.