|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectec.Problem
ec.gp.GPProblem
ec.app.twobox.TwoBox
public class TwoBox
TwoBox implements the TwoBox problem, with or without ADFs, as discussed in Koza-II.
Parameters
| base.data classname, inherits or == ec.app.twobox.TwoBoxData |
(the class for the prototypical GPData object for the TwoBox problem) |
| base.size int >= 1 |
(the size of the training set) |
| base.range int >= 1 |
(the range of dimensional values in the training set -- they'll be integers 1...range inclusive) |
Parameter bases
| base.data | species (the GPData object) |
| Field Summary | |
|---|---|
int |
currentIndex
|
TwoBoxData |
input
|
double[] |
inputsh0
|
double[] |
inputsh1
|
double[] |
inputsl0
|
double[] |
inputsl1
|
double[] |
inputsw0
|
double[] |
inputsw1
|
double[] |
outputs
|
static java.lang.String |
P_RANGE
|
static java.lang.String |
P_SIZE
|
int |
range
|
int |
trainingSetSize
|
| Fields inherited from class ec.gp.GPProblem |
|---|
data, P_DATA, P_GPPROBLEM, P_STACK, stack |
| Fields inherited from class ec.Problem |
|---|
P_PROBLEM |
| Constructor Summary | |
|---|---|
TwoBox()
|
|
| Method Summary | |
|---|---|
java.lang.Object |
clone()
Creates a new individual cloned from a prototype, and suitable to begin use in its own evolutionary context. |
void |
evaluate(EvolutionState state,
Individual ind,
int subpopulation,
int threadnum)
Evaluates the individual in ind, if necessary (perhaps not evaluating them if their evaluated flags are true), and sets their fitness appropriately. |
double |
func(double l0,
double w0,
double h0,
double l1,
double w1,
double h1)
|
void |
setup(EvolutionState state,
Parameter base)
Sets up the object by reading it from the parameters stored in state, built off of the parameter base base. |
| Methods inherited from class ec.gp.GPProblem |
|---|
defaultBase, describe |
| Methods inherited from class ec.Problem |
|---|
canEvaluate, closeContacts, describe, evaluate, finishEvaluating, getBase, initializeContacts, prepareToEvaluate, reinitializeContacts, setBase |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface ec.simple.SimpleProblemForm |
|---|
canEvaluate, describe, describe, evaluate |
| Field Detail |
|---|
public static final java.lang.String P_SIZE
public static final java.lang.String P_RANGE
public int currentIndex
public int trainingSetSize
public int range
public double[] inputsl0
public double[] inputsw0
public double[] inputsh0
public double[] inputsl1
public double[] inputsw1
public double[] inputsh1
public double[] outputs
public TwoBoxData input
| Constructor Detail |
|---|
public TwoBox()
| Method Detail |
|---|
public final double func(double l0,
double w0,
double h0,
double l1,
double w1,
double h1)
public java.lang.Object clone()
PrototypeTypically this should be a full "deep" clone. However, you may share certain elements with other objects rather than clone hem, depending on the situation:
Implementations.
public Object clone()
{
try
{
return super.clone();
}
catch ((CloneNotSupportedException e)
{ throw new InternalError(); } // never happens
}
public Object clone()
{
try
{
MyObject myobj = (MyObject) (super.clone());
// put your deep-cloning code here...
}
catch ((CloneNotSupportedException e)
{ throw new InternalError(); } // never happens
return myobj;
}
public Object clone()
{
MyObject myobj = (MyObject) (super.clone());
// put your deep-cloning code here...
return myobj;
}
clone in interface Prototypeclone in class GPProblem
public void setup(EvolutionState state,
Parameter base)
PrototypeFor prototypes, setup(...) is typically called once for the prototype instance; cloned instances do not receive the setup(...) call. setup(...) may be called more than once; the only guarantee is that it will get called at least once on an instance or some "parent" object from which it was ultimately cloned.
setup in interface Prototypesetup in interface Setupsetup in class GPProblem
public void evaluate(EvolutionState state,
Individual ind,
int subpopulation,
int threadnum)
SimpleProblemForm
evaluate in interface SimpleProblemFormevaluate in class Problem
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||