Documentation of 'ec.gp.push.PushBuilder' Java class
PushBuilder
ec.gp.push

Class PushBuilder

  • All Implemented Interfaces:
    Prototype, Setup, java.io.Serializable, java.lang.Cloneable


    public class PushBuilder
    extends GPNodeBuilder
    PushBuilder implements the Push-style tree building algorithm, which permits nonterminals of arbitrary arity. This algorithm is as follows:

     BUILD-TREE(size)
     If size == 1, return a terminal
     Else
     .... Make a parent nonterminal p
     .... while (size > 0)
     .... .... a <- random number from 1 to size
     .... .... size <- size - a
     .... .... c <- BUILD-TREE(a)
     .... .... Add c as a child of p
     shuffle order of children of p
     return p
     

    You must specify a size distribution for PushBuilder.

    Default Base
    gp.push.builder

    See Also:
    Serialized Form
    • Constructor Detail

      • PushBuilder

        public PushBuilder()
    • Method Detail

      • defaultBase

        public Parameter defaultBase()
        Description copied from interface: Prototype
        Returns 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

        public void setup(EvolutionState state,
                          Parameter base)
        Description copied from interface: Prototype
        Sets 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.

        Specified by:
        setup in interface Prototype
        Specified by:
        setup in interface Setup
        Overrides:
        setup in class GPNodeBuilder

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.