Uses of Class
simuLCS.Classifier

Packages that use Classifier
simuLCS   
simuLCS.graphics   
 

Uses of Classifier in simuLCS
 

Subclasses of Classifier in simuLCS
 class ZClassifier
          Implements the ZClassifier, ie. a Classifier with a strength.
 

Methods in simuLCS that return Classifier
static Classifier Classifier.fromString(java.lang.String s, Template t)
          Returns a Classifier object from a string "XXX->YYYY [cccc]" where X,Y = {0,1,#} XXX is the condition part, YYYY is the action part cccc is the name to put between square brackets (optional)
 Classifier[] ClassifierSet.getClassifiers()
          Get an array with all the classifiers in this set
 

Methods in simuLCS with parameters of type Classifier
static int Classifier.createSharedClassifier(Classifier c, Agent[] ag)
          Create a unique instance of a classifier shared by several Agents so that the user has to modify only this classifier to affect the behaviour of all the Agents
static int Classifier.removeSharedClassifier(Classifier c, Agent[] ag)
           
 boolean Classifier.match(Classifier c, int CondMatch, int ActMatch)
          Returns true if the classifier satisfies the properties described by CondMatch and ActMatch
 void ClassifierSet.addClassifier(Classifier c)
           
 void ClassifierSet.removeClassifier(Classifier c)
           
 boolean ClassifierSet.contains(Classifier c)
          Returns true if this Set contains the classifier c
abstract  Vector2D Template.getVectorFromAction(Classifier c, Entity me, Entity otherEntity)
          Return the Vector created by the Action part of the classifier
 Vector2D Template.getVectorFromActions(Classifier[] cs, Entity me, Entity otherEntity)
          Return the Vector created by the actions partS of several classifiers
 Vector2D TemplateRSP.getVectorFromAction(Classifier c, Entity me, Entity otherEntity)
          Calculate the Vector generated by the Action part of the Classifier This function gives the meaning of the Action part.
 Vector2D TemplateRSPSimple.getVectorFromAction(Classifier c, Entity me, Entity otherEntity)
          Only the Action Part was modified (4 bits)
 Vector2D TemplateRSPVerySimple.getVectorFromAction(Classifier c, Entity me, Entity otherEntity)
           
 

Uses of Classifier in simuLCS.graphics
 

Fields in simuLCS.graphics declared as Classifier
private  Classifier G_ListClassifiers.previousSelectedClassifier
           
private  Classifier G_ListPanel.previousSelectedClassifier
           
private  Classifier G_PanClassifier.currentClass
           
protected static Classifier G_Panel.currentClassifier
          Current Selected Classifier
 

Methods in simuLCS.graphics that return Classifier
static Classifier G_Panel.getCurrentClassifier()
           
 

Methods in simuLCS.graphics with parameters of type Classifier
static void G_Panel.setCurrentClassifier(Classifier classifier)