Uses of Class
classifierLibrary.StandardClassifier

Packages that use StandardClassifier
classifierLibrary   
demoZLCS   
 

Uses of StandardClassifier in classifierLibrary
 

Methods in classifierLibrary that return StandardClassifier
 StandardClassifier StandardClassifier.cross(StandardClassifier c, int Position)
          Crossover-Method, extending the inherited crossover-method, setting the strenght value of the resulting classifier to the average of the previous ones.
 

Methods in classifierLibrary with parameters of type StandardClassifier
 StandardClassifier StandardClassifier.cross(StandardClassifier c, int Position)
          Crossover-Method, extending the inherited crossover-method, setting the strenght value of the resulting classifier to the average of the previous ones.
 

Uses of StandardClassifier in demoZLCS
 

Methods in demoZLCS that return StandardClassifier
 StandardClassifier ZLCS.chooseClassifier()
          Roulettewheel-choice of a StandardClassifier, using the classifiers' strength for determining probabilities.
 StandardClassifier ZLCS.cover(Situation sit)
          Covering: Generation of a new StandardClassifier matching a given Situation.
 

Constructors in demoZLCS with parameters of type StandardClassifier
ZLCS(java.lang.String name, StandardClassifier sample, int size, boolean randomized)
          Construktor creating an instance of ZLCS, using a given sample Classifier for filling the instance up to a defined size.