Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/06/14 20:41:57 (10 years ago)
Author:
sawinkle
Message:

#2109:

  • Implemented PIGEMapper. Due to that, it was necessary to modify the Map method interface to additionally take the bounds and length of the genotype.
  • Corrected and simplified the different mappers. Simplified the SampleArity method of /Mappers/GenotypeToPhenotypeMapper.cs
File:
1 edited

Legend:

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

    r10280 r10290  
    2121
    2222using HeuristicLab.Core;
     23using HeuristicLab.Data;
    2324using HeuristicLab.Encodings.IntegerVectorEncoding;
    2425using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
     
    2930  /// </summary>
    3031  public interface IGenotypeToPhenotypeMapper : IIntegerVectorOperator {
    31     SymbolicExpressionTree Map(IRandom random,
     32    SymbolicExpressionTree Map(IRandom random, IntMatrix bounds, int length,
    3233                               ISymbolicExpressionGrammar grammar,
    3334                               IntegerVector genotype);
Note: See TracChangeset for help on using the changeset viewer.