Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.ExtLibs/HeuristicLab.SimSharp/3.3.2/SimSharp-3.3.2/Random/IRandom.cs @ 18242

Last change on this file since 18242 was 18023, checked in by jkarder, 3 years ago

#3065: update Sim# to 3.3.2

File size: 397 bytes
Line 
1#region License Information
2/*
3 * This file is part of SimSharp which is licensed under the MIT license.
4 * See the LICENSE file in the project root for more information.
5 */
6#endregion
7
8namespace SimSharp {
9  public interface IRandom {
10    int Next();
11    int Next(int upperBound);
12    int Next(int lowerBound, int upperBound);
13    double NextDouble();
14
15    void Reinitialise(int seed);
16  }
17}
Note: See TracBrowser for help on using the repository browser.