Uses of Class
simuLCS.ZClassifier

Packages that use ZClassifier
simuLCS   
 

Uses of ZClassifier in simuLCS
 

Methods in simuLCS that return ZClassifier
private  ZClassifier ZClassifierSet.selectClassifierRW()
          Selects one classifier using roulette wheel selection according to the fitnesses of the classifiers.
private  ZClassifier ZClassifierSet.getIdenticalClassifier(ZClassifier newCl)
          Looks for an identical classifier in the population.
 ZClassifier[] ZClassifierSet.giveBestClassifiers(int nbFromTop)
          Returns an array with the classifier ranked according to their strength
 

Methods in simuLCS with parameters of type ZClassifier
 boolean ZClassifier.onePointCrossover(ZClassifier cl)
          Applies one point crossover and returns if the classifiers changed.
 boolean ZClassifier.isIdentical(ZClassifier cl)
          Returns true if the two classifiers are identical in condition and action.
private  ZClassifier ZClassifierSet.getIdenticalClassifier(ZClassifier newCl)
          Looks for an identical classifier in the population.
private  void ZClassifierSet.addClassifierMaintainingSize(ZClassifier classifier)
          Adds a classifier to the set.
private  boolean ZClassifierSet.removeClassifier(ZClassifier classifier)
          Removes the specified classifier from the population.
 

Constructors in simuLCS with parameters of type ZClassifier
ZClassifier(ZClassifier clOld)
          Constructs an identical XClassifier.
ZClassifierSet(Template t, int initialSize, ZClassifier init)
          Creates a ZClassifierSet with initialSize copies of the classifier init.