Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/13/18 16:56:35 (6 years ago)
Author:
bburlacu
Message:

#2895: Add solution skeleton for PushGP with genealogy analysis.

Location:
branches/2895_PushGP_GenealogyAnalysis
Files:
1 added
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/ObjectPools/Random/SeededRandomPool.cs

    r15289 r15771  
    1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.ObjectPools.Random {
    2   using System;
     1using System;
    32
    4   using HeuristicLab.Core;
    5   using HeuristicLab.Problems.ProgramSynthesis.Push.Data.Pool;
    6   using HeuristicLab.Random;
     3using HeuristicLab.Core;
     4using HeuristicLab.Random;
     5
     6namespace HeuristicLab.Problems.ProgramSynthesis {
    77
    88  public class SeededRandomPool {
     
    1010    protected readonly ObjectPool<IRandom> Pool;
    1111
    12     public SeededRandomPool() : this(new Random().Next()) { }
     12    public SeededRandomPool() : this(new System.Random().Next()) { }
    1313
    1414    public SeededRandomPool(int seed) : this(seed, () => new FastRandom()) { }
Note: See TracChangeset for help on using the changeset viewer.