Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/Auxiliary/RandomExtensions.cs @ 13749

Last change on this file since 13749 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 349 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary
7{
8  public static class RandomExtensions
9  {
10    public static double NextDouble(this Random rnd, double min, double max)
11    {
12      return min + (max - min) * rnd.NextDouble();
13    }
14  }
15}
Note: See TracBrowser for help on using the repository browser.