Class PTC1
- All Implemented Interfaces:
Prototype,Setup,Serializable,Cloneable
Luke, Sean. 2000. Issues in Scaling Genetic Programming: Breeding Strategies, Tree Generation, and Code Bloat. Ph.D. Dissertation, Department of Computer Science, University of Maryland, College Park, Maryland.
...and also in
Luke, Sean. 2000. Two fast tree-creation algorithms for genetic programming. In IEEE Transactions on Evolutionary Computation 4:3 (September 2000), 274-283. IEEE.
Both can be found at http://people.cs.gmu.edu/~sean/papers/
PTC1 requires that your function set to implement PTCFunctionSetForm. The provided function set, PTCFunctionSet, does exactly this.
The Strongly-typed PTC1 algorithm is a derivative of the GROW algorithm used in ec.gp.koza.GrowBuilder. The primary differences are:
- PTC1 guarantees that trees generated will have an expected (mean) tree size, provided by the user. There is no guarantee on variance. This is different from GROW, which doesn't give any user control at all.
- PTC1 does not have a min-depth value. In essence, PTC1's min-depth value is always set to 1.
- PTC1's max-depth value should really only be used to enforce a large memory restriction. Unlike GROW, where it's used to keep GROW from going nuts.
- PTC1 has provisions for picking nonterminals with various probabilities over other nonterminals (and likewise for terminals). To use this, tweak the PTCFunctionSetForm object.
Parameters
| base.expected-size int >= 1 |
default expected tree size |
| base.max-depth int >= 1 |
maximum allowable tree depth (usually a big value) |
Default Base
gp.build.ptc1
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionintThe default expected tree size for PTC1intThe largest maximum tree depth PTC1 can specify -- should be big.static final Stringstatic final Stringstatic final StringFields inherited from class ec.gp.GPNodeBuilder
CHECK_BOUNDARY, maxSize, minSize, NOSIZEGIVEN, P_MAXSIZE, P_MINSIZE, P_NUMSIZES, P_SIZE, sizeDistribution -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the default base for this prototype.newRootedTree(EvolutionState state, GPType type, int thread, GPNodeParent parent, GPFunctionSet set, int argposition, int requestedSize) voidsetup(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.GPNodeBuilder
canPick, clone, errorAboutNoNodeWithType, pickSize, warnAboutNonterminal, warnAboutNonTerminalWithType, warnAboutNoTerminalWithType
-
Field Details
-
P_PTC1
- See Also:
-
P_EXPECTED
- See Also:
-
P_MAXDEPTH
- See Also:
-
maxDepth
public int maxDepthThe largest maximum tree depth PTC1 can specify -- should be big. -
expectedSize
public int expectedSizeThe default expected tree size for PTC1
-
-
Constructor Details
-
PTC1
public PTC1()
-
-
Method Details
-
defaultBase
Description copied from interface:PrototypeReturns the default base for this prototype. This should generally be implemented by building off of the static base() method on the DefaultsForm object for the prototype's package. This should be callable during setup(...). -
setup
Description copied from interface:PrototypeSets up the object by reading it from the parameters stored in state, built off of the parameter base base. If an ancestor implements this method, be sure to call super.setup(state,base); before you do anything else.For 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.
-
newRootedTree
public GPNode newRootedTree(EvolutionState state, GPType type, int thread, GPNodeParent parent, GPFunctionSet set, int argposition, int requestedSize) - Specified by:
newRootedTreein classGPNodeBuilder
-