source:
trunk/HeuristicLab.ExtLibs/HeuristicLab.SimSharp/3.3.1/SimSharp-3.3.1/Random/IRandom.cs
@
17507
Last change on this file since 17507 was 17487, checked in by abeham, 5 years ago | |
---|---|
File size: 414 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 | |
8 | namespace 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.