Uses of Interface
edu.memphis.ccrg.lida.pam.PamLinkable

Packages that use PamLinkable
edu.memphis.ccrg.lida.pam Contains classes related to the definition of the Perceptual Associative Memory module and its default implementation. 
edu.memphis.ccrg.lida.pam.tasks Contains classes implementing several low-level processes of the default PerceptualAssociativeMemory. 
 

Uses of PamLinkable in edu.memphis.ccrg.lida.pam
 

Subinterfaces of PamLinkable in edu.memphis.ccrg.lida.pam
 interface PamLink
          A Link in PerceptualAssociativeMemory
 interface PamNode
          A PamNode is a Node which resides in PerceptualAssociativeMemory and represents a feature or a concept.
 

Classes in edu.memphis.ccrg.lida.pam that implement PamLinkable
 class PamLinkImpl
          Default implementation of PamLink.
 class PamNodeImpl
          Default implementation of PamNode.
 

Methods in edu.memphis.ccrg.lida.pam with parameters of type PamLinkable
 boolean PerceptualAssociativeMemory.isOverPerceptThreshold(PamLinkable l)
          Returns whether PamLinkable is above percept threshold.
 boolean PerceptualAssociativeMemoryImpl.isOverPerceptThreshold(PamLinkable l)
           
 void PerceptualAssociativeMemory.receiveExcitation(PamLinkable linkable, double amount)
          Excites specified PamLinkable an amount of activation.
 void PerceptualAssociativeMemoryImpl.receiveExcitation(PamLinkable pl, double amount)
           
 

Method parameters in edu.memphis.ccrg.lida.pam with type arguments of type PamLinkable
 void PerceptualAssociativeMemory.receiveExcitation(java.util.Set<PamLinkable> linkables, double amount)
          Excites PamLinkable with an amount of activation.
 void PerceptualAssociativeMemoryImpl.receiveExcitation(java.util.Set<PamLinkable> linkables, double amount)
           
 

Uses of PamLinkable in edu.memphis.ccrg.lida.pam.tasks
 

Fields in edu.memphis.ccrg.lida.pam.tasks declared as PamLinkable
protected  PamLinkable BasicDetectionAlgorithm.linkable
          PamLinkable this algorithm detects
 

Fields in edu.memphis.ccrg.lida.pam.tasks with type parameters of type PamLinkable
protected  java.util.Map<java.lang.String,PamLinkable> MultipleDetectionAlgorithm.pamNodeMap
          Map of PamLinkable
 

Methods in edu.memphis.ccrg.lida.pam.tasks that return PamLinkable
 PamLinkable MultipleDetectionAlgorithm.getPamLinkable()
           
 PamLinkable DetectionAlgorithm.getPamLinkable()
          Returns PamLinkable this algorithm can detect.
 PamLinkable BasicDetectionAlgorithm.getPamLinkable()
           
 

Methods in edu.memphis.ccrg.lida.pam.tasks with parameters of type PamLinkable
 void MultipleDetectionAlgorithm.addPamLinkable(PamLinkable linkable)
          Adds PamLinkable.
 void MultipleDetectionAlgorithm.setPamLinkable(PamLinkable linkable)
           
 void DetectionAlgorithm.setPamLinkable(PamLinkable linkable)
          Adds PamLinkable that will be detected by this algorithm.
 void BasicDetectionAlgorithm.setPamLinkable(PamLinkable linkable)