jaga.pj.gral
Class AllOrNothingExperiment

java.lang.Object
  |
  +--jaga.pj.gral.AllOrNothingExperiment
All Implemented Interfaces:
Experiment, java.io.Serializable

public class AllOrNothingExperiment
extends java.lang.Object
implements Experiment

This Experiment takes another Experiment E and will return a fitness value of 0.5 if E returns 1, and 0 otherwise.

See Also:
Serialized Form

Constructor Summary
AllOrNothingExperiment(Experiment pExp)
          Creates new PerfectOrNothingExperiment
AllOrNothingExperiment(Experiment pExp, double th)
           
 
Method Summary
 SampleData[] generateInput()
          generates an array of inputs suitable for this experiment using default input sample separation.
 SampleData[] generateInput(int inputSampleSeparation)
          generates an array of inputs suitable for this experiment.
 double getFitness(SampleData[] in, SampleData[] out)
          returns a fitness associated to a given input/output pair for this experiment.
 int getNumOfInputs()
           
 int getNumOfOutputs()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AllOrNothingExperiment

public AllOrNothingExperiment(Experiment pExp)
Creates new PerfectOrNothingExperiment

AllOrNothingExperiment

public AllOrNothingExperiment(Experiment pExp,
                              double th)
Method Detail

getFitness

public double getFitness(SampleData[] in,
                         SampleData[] out)
returns a fitness associated to a given input/output pair for this experiment. The fitness is a double and is in adjusted fitness format. From 0 to 1, 1 being perfectly fit.
Specified by:
getFitness in interface Experiment
Parameters:
in - array of inputs
out - array of outputs

generateInput

public SampleData[] generateInput()
generates an array of inputs suitable for this experiment using default input sample separation.
Specified by:
generateInput in interface Experiment

generateInput

public SampleData[] generateInput(int inputSampleSeparation)
generates an array of inputs suitable for this experiment.
Specified by:
generateInput in interface Experiment
Parameters:
inputSampleSeparation - relative frequency of input to output samples. If this is n, then n outputs will be sampled for every change in inputs.

getNumOfInputs

public int getNumOfInputs()
Specified by:
getNumOfInputs in interface Experiment

getNumOfOutputs

public int getNumOfOutputs()
Specified by:
getNumOfOutputs in interface Experiment

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object