Uses of Class
com.kpro.algorithm.LearnAlgorithm

Packages that use LearnAlgorithm
com.kpro.algorithm   
 

Uses of LearnAlgorithm in com.kpro.algorithm
 

Subclasses of LearnAlgorithm in com.kpro.algorithm
 class Learn_Constant
          The simplest implementation of learnAlgorithm, this literally does nothing, and thus doesn't actually learn.
 class LearnAlgBasic
          A very slow learning algorithm that goes through every case in every PolicyObject in the whole database.
 class LearnAlgStand
          An learning algorithm that extends LearnAlgorithm
 

Fields in com.kpro.algorithm declared as LearnAlgorithm
protected  LearnAlgorithm CBR.learnAlg
           
 

Methods in com.kpro.algorithm that return LearnAlgorithm
private  LearnAlgorithm CBR.getLearnAlgorihm(java.lang.String algorithm, java.util.Properties weightsConfig)
          Parse the learning algorithm substring into a LearningAlgorithm obejct with the right attributes and values.
 

Constructors in com.kpro.algorithm with parameters of type LearnAlgorithm
CBR(Gio theIO, java.util.Properties weightsConfig, ReductionAlgorithm reduceAlg, ConclusionAlgorithm conclusAlg, LearnAlgorithm learnAlg)
          Our generic constructor.