net.sourceforge.jabm.learning
Interface StimuliResponseLearner

All Superinterfaces:
DiscreteLearner, Learner
All Known Implementing Classes:
DumbRandomLearner, MetaLearner, NPTRothErevLearner, RothErevLearner, StatelessQLearner

public interface StimuliResponseLearner
extends DiscreteLearner

Classes implementing this interface implement myopic stimuli-response reinformcement learning algorithms.

 

Method Summary
 int bestAction()
           
 void reward(double reward)
          Reward the learning algorithm according to the last action it chose.
 int worstAction()
           
 
Methods inherited from interface net.sourceforge.jabm.learning.DiscreteLearner
act, getNumberOfActions
 
Methods inherited from interface net.sourceforge.jabm.learning.Learner
dumpState, getLearningDelta, monitor
 

Method Detail

reward

void reward(double reward)
Reward the learning algorithm according to the last action it chose.


bestAction

int bestAction()

worstAction

int worstAction()