Uses of Interface
ec.cgp.Record

Packages that use Record
ec.cgp.problems   
 

Uses of Record in ec.cgp.problems
 

Classes in ec.cgp.problems that implement Record
static class ProblemBreastCancerW.BreastCancerWRecord
          Record to represent a classification instance.
static class ProblemBreastCancerY.BreastCancerYRecord
          Record to represent a classification instance.
static class ProblemIris.IrisRecord
          Record to represent a classification instance.
 

Fields in ec.cgp.problems with type parameters of type Record
(package private) static java.util.List<Record> ClassificationProblem.data
          storage for records
(package private) static java.util.List<Record> ClassificationProblem.testSet
          portion of the records used for testing/verification
(package private) static java.util.List<Record> ClassificationProblem.trainingSet
          portion of the records used for training
 

Methods in ec.cgp.problems that return Record
(package private)  Record ProblemIris.makeRecord(java.lang.String line)
          Interpret a line from the data file into a Record instance.
(package private)  Record ProblemBreastCancerY.makeRecord(java.lang.String line)
          Interpret a line from the data file into a Record instance.
(package private)  Record ProblemBreastCancerW.makeRecord(java.lang.String line)
          Interpret a line from the data file into a Record instance.
(package private) abstract  Record ClassificationProblem.makeRecord(java.lang.String line)
          Your implementing class must do the grunt work of turning a line from the text file into a Record instance that is specific to your problem.
 

Methods in ec.cgp.problems with parameters of type Record
(package private)  boolean[] ProblemIris.compare(java.lang.Object[] outputs, Record rec)
          Determine the result of classification by comparing the evaluated outputs from our Cartsesian Genetic Program to the instance class(es) specified somewhere in the given Record.
(package private)  boolean[] ProblemBreastCancerY.compare(java.lang.Object[] outputs, Record rec)
          Determine the result of classification by comparing the evaluated outputs from our Cartsesian Genetic Program to the instance class(es) specified somewhere in the given Record.
(package private)  boolean[] ProblemBreastCancerW.compare(java.lang.Object[] outputs, Record rec)
          Determine the result of classification by comparing the evaluated outputs from our Cartsesian Genetic Program to the instance class(es) specified somewhere in the given Record.
(package private) abstract  boolean[] ClassificationProblem.compare(java.lang.Object[] outputs, Record r)
          During evaluation, outputs are passed to this method.
(package private)  boolean[] ClassificationProblem.eval(ec.EvolutionState state, int threadnum, java.lang.Object[] inputs, Record rec, VectorIndividualCGP ind)
          Sets the inputs, runs the Cartesian Genetic Program, and returns the results of classification.
(package private)  void ProblemIris.setInputs(java.lang.Object[] inputs, Record rec)
          Obtain the inputs from the data record.
(package private)  void ProblemBreastCancerY.setInputs(java.lang.Object[] inputs, Record rec)
          Obtain the inputs from the data record.
(package private)  void ProblemBreastCancerW.setInputs(java.lang.Object[] inputs, Record rec)
          Obtain the inputs from the data record.
(package private) abstract  void ClassificationProblem.setInputs(java.lang.Object[] inputs, Record r)
          Your implementing class must map attributes of the given Record to items in the input vector using this method.