Changeset 10328 for branches/GrammaticalEvolution/HeuristicLab.Problems.GrammaticalEvolution/Mappers/PIGEMapper.cs
- Timestamp:
- 01/12/14 20:00:02 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GrammaticalEvolution/HeuristicLab.Problems.GrammaticalEvolution/Mappers/PIGEMapper.cs
r10290 r10328 97 97 /// </summary> 98 98 /// <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> 99 101 /// <param name="grammar">grammar definition</param> 100 102 /// <param name="genotype">integer vector, which should be mapped to a tree</param> … … 121 123 122 124 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> 123 133 private void MapPIGEIteratively(ISymbolicExpressionTreeNode startNode, 124 134 IntegerVector genotype,
Note: See TracChangeset
for help on using the changeset viewer.