Package edu.memphis.ccrg.lida.framework.strategies

Contains the various strategies (implementors of the strategy design pattern) used in the framework to implement excitation, decay, etc.

See:
          Description

Interface Summary
DecayStrategy A strategy pattern for decaying Activatibles or Learnables Implementations should add themselves to ElementFactory via the factoriesData.xml configuration file.
ExciteStrategy A strategy pattern for exciting Activatibles or Learnables Implementations should add themselves to ElementFactory via the factoriesData.xml configuration file.
Strategy Generic designation for all types of strategies such as decay, excite, etc.
TotalActivationStrategy A strategy that calculates total activation.
 

Class Summary
DefaultTotalActivationStrategy Default method to calculate total activation.
LinearDecayStrategy Basic DecayStrategy governed by a linear curve.
LinearExciteStrategy Basic ExciteStrategy governed by a linear curve.
NoDecayStrategy A DecayStrategy that never modifies the activation passed to it.
NoExciteStrategy An ExciteStrategy that never modifies the activation passed to it.
SigmoidDecayStrategy Default implementation of sigmoid decay.
SigmoidExciteStrategy Default implementation of sigmoid excite.
StrategyImpl Abstract implementation of Strategy
 

Package edu.memphis.ccrg.lida.framework.strategies Description

Contains the various strategies (implementors of the strategy design pattern) used in the framework to implement excitation, decay, etc.