Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/19 17:22:34 (5 years ago)
Author:
gkronber
Message:

#2933: use RandomSeedGenerator in CrossValidation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/CrossValidation.cs

    r16565 r16661  
    300300        if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused))
    301301          throw new InvalidOperationException(string.Format("Start not allowed in execution state \"{0}\".", ExecutionState));
    302         seed = new FastRandom().NextInt();
     302        seed = RandomSeedGenerator.GetSeed();
    303303
    304304        if (Algorithm == null) return;
Note: See TracChangeset for help on using the changeset viewer.