Uses of Class
simuLCS.Template

Packages that use Template
simuLCS   
simuLCS.graphics   
 

Uses of Template in simuLCS
 

Subclasses of Template in simuLCS
 class TemplateRSP
          This Template is used to describe R.
 class TemplateRSPSimple
          First simplification of the TemplateRSP, unfortunately this was not enough to obtain good results.
 class TemplateRSPVerySimple
          A more simplified version of the TemplateRSP, with 2 bits for the Condition and 3 bits for the Action
 

Fields in simuLCS declared as Template
protected  Template AgentClassifier.template
          The template used by the Agent for its behaviour
protected  Template ClassifierSet.template
           
 

Methods in simuLCS that return Template
 Template AgentClassifier.getTemplate()
           
 Template ClassifierSet.getTemplate()
           
 

Methods in simuLCS with parameters of type Template
 void AgentClassifier.setTemplate(Template template)
           
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)
 void ClassifierSet.setTemplate(Template template)
           
 

Constructors in simuLCS with parameters of type Template
AgentClassifierLearning(java.util.Random gen, Arena a, java.lang.String name, Template t, ClassifierSet b)
          Creates an ACL with a given Template and a given Behaviour
ClassifierSet(Template t)
          Constructs a non sorted Set of Classifiers.
ClassifierSet(Template t, boolean isSort)
          Constructs a Set of Classifiers, sorted if isSort = true, non sorted otherwise.
ClassifierSet(Template template, java.util.Comparator order)
           
ZClassifierSet(Template t)
          Creates a new, empty population.
ZClassifierSet(Template t, boolean isSort)
          Creates an empty set that can be ranked if isSort = true
ZClassifierSet(Template t, int initialSize)
          Creates a Set with initialSize random classifiers
ZClassifierSet(Template t, int initialSize, ZClassifier init)
          Creates a ZClassifierSet with initialSize copies of the classifier init.
 

Uses of Template in simuLCS.graphics
 

Fields in simuLCS.graphics declared as Template
protected  Template G_TemplatePanConditions.associatedTemplate
           
protected  Template G_TemplatePanActions.associatedTemplate
           
 

Methods in simuLCS.graphics that return Template
static Template G_Panel.getTemplateFromSelected()
          This function returns a Template if all the selected entities share the same Template (in which case they can have common classifiers).
 

Methods in simuLCS.graphics with parameters of type Template
static G_TemplatePanConditions G_TemplatePanConditions.getInstance(Template t)
           
static G_TemplatePanActions G_TemplatePanActions.getInstance(Template t)
           
 

Constructors in simuLCS.graphics with parameters of type Template
G_TemplatePanConditions(Template t, ClassifierComponent[] conds)
           
G_TemplatePanActions(Template t, ClassifierComponent[] acts)