Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/15/13 15:56:42 (10 years ago)
Author:
sawinkle
Message:

#2109: Implemented a DepthFirstMapper, which works similarly to the DepthFirstMapper, but uses a queue to enable a breath-first tree creation.

File:
1 edited

Legend:

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

    r10228 r10229  
    3333  /// DepthFirstMapper
    3434  /// </summary>
    35   [Item("DepthFirstMapper", "")]
     35  [Item("DepthFirstMapper", "Resolves the non-terminal symbols of the resulting phenotypic syntax tree in a depth-first manner.")]
    3636  [StorableClass]
    3737  public class DepthFirstMapper : GenotypeToPhenotypeMapper {
     
    135135
    136136    /// <summary>
    137     /// Genotype-to-Phenotype mapper (iterative depth-first approach).
     137    /// Genotype-to-Phenotype mapper (iterative depth-first approach, by using a stack -> LIFO).
    138138    /// </summary>
    139139    /// <param name="startNode">first node of the tree with arity 1</param>
Note: See TracChangeset for help on using the changeset viewer.