Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/05/14 12:53:58 (10 years ago)
Author:
sawinkle
Message:

#2109: Fetched random number generator in Evaluator implementations from scope, so that the same results are produced using the same seed.

File:
1 edited

Legend:

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

    r10068 r10280  
    4848    /// Random approach.
    4949    /// </summary>
     50    /// <param name="random">random number generator</param>
    5051    /// <param name="grammar">grammar definition</param>
    5152    /// <param name="genotype">integer vector, which should be mapped to a tree</param>
    5253    /// <returns>phenotype (a symbolic expression tree)</returns>
    53     public override SymbolicExpressionTree Map(ISymbolicExpressionGrammar grammar,
     54    public override SymbolicExpressionTree Map(IRandom random,
     55                                               ISymbolicExpressionGrammar grammar,
    5456                                               IntegerVector genotype) {
    5557
Note: See TracChangeset for help on using the changeset viewer.