Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/14 20:00:02 (11 years ago)
Author:
sawinkle
Message:

#2109:

  • Added method comments + refactoring.
  • Implemented RandomMapper.
  • Changed InitialTreeLength (genotype length) of Symbolic Regression problem from 25 to 30, equally to the Artificial Ant problem with also 30.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GrammaticalEvolution/HeuristicLab.Problems.GrammaticalEvolution/Mappers/PIGEMapper.cs

    r10290 r10328  
    9797    /// </summary>
    9898    /// <param name="random">random number generator</param>
     99    /// <param name="bounds">integer number range for genomes (codons) of the nont vector</param>
     100    /// <param name="length">length of the nont vector to create</param>
    99101    /// <param name="grammar">grammar definition</param>
    100102    /// <param name="genotype">integer vector, which should be mapped to a tree</param>
     
    121123
    122124
     125    /// <summary>
     126    /// Genotype-to-Phenotype mapper (iterative 𝜋GE approach, using a list of not expanded nonTerminals).
     127    /// </summary>
     128    /// <param name="startNode">first node of the tree with arity 1</param>
     129    /// <param name="genotype">integer vector, which should be mapped to a tree</param>
     130    /// <param name="grammar">grammar to determine the allowed child symbols for each node</param>
     131    /// <param name="maxSubtreeCount">maximum allowed subtrees (= number of used genomes)</param>
     132    /// <param name="random">random number generator</param>
    123133    private void MapPIGEIteratively(ISymbolicExpressionTreeNode startNode,
    124134                                    IntegerVector genotype,
Note: See TracChangeset for help on using the changeset viewer.