You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SimSharp/SimSharp.csproj
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
<DelaySign>False</DelaySign>
8
8
<AssemblyName>SimSharp</AssemblyName>
9
9
<RootNamespace>SimSharp</RootNamespace>
10
-
<Version>3.3</Version>
10
+
<Version>3.3.1</Version>
11
11
<Authors>Andreas Beham</Authors>
12
12
<Description>Sim# aims to port the concepts used in SimPy (https://pypi.python.org/pypi/simpy) to the .NET world. It is implemented in C# and builds on the .NET Framework 4.5 / .NET Standard 2.0. Sim# uses an efficient event queue (adapted from https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp). The MachineShop benchmark comes close to 3.5 million events per second on a Core i7-7 2.7Ghz.
13
13
@@ -16,9 +16,9 @@ Sim# allows modeling processes easily and with little boiler plate code. A proce
<PackageReleaseNotes>Sim# 3.3 adds a pseudo realtime simulation environment which is derived from ThreadSafeSimulation. This new environment is very flexible and may dynamically change speed from running in virtual time to running in scaled realtime. It does not provide a realtime guarantee however. It introduces a wall clock delay that is equal to the difference between the next event's date and the current simulation time. It uses a Stopwatch to track the current time while the simulation is delayed.
19
+
<PackageReleaseNotes>Sim# 3.3.1 adds a RandChoice method to generate random samples from a weighted source of items.
20
20
21
-
A very rare bug has been fixed with respect to generating normal-distributed random numbers. It could arise in thread-safe simulations with asynchronous interactions and multiple sources of randomness, i.e., multiple RNGs.</PackageReleaseNotes>
21
+
It also fixes a bug with respect to the calculation of the sigma parameter in RandLogNormal2 methods (which takes the desired sample standard deviation as input).</PackageReleaseNotes>
0 commit comments