From 2a9995032a4abeeae4f8f497bcf598dc0f9142b5 Mon Sep 17 00:00:00 2001 From: Andreas Beham Date: Mon, 4 May 2020 16:06:56 +0200 Subject: [PATCH] Update version to 3.3.2 --- src/SimSharp/SimSharp.csproj | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/SimSharp/SimSharp.csproj b/src/SimSharp/SimSharp.csproj index d2cb18c..eb9d86f 100644 --- a/src/SimSharp/SimSharp.csproj +++ b/src/SimSharp/SimSharp.csproj @@ -7,7 +7,7 @@ False SimSharp SimSharp - 3.3.1 + 3.3.2 Andreas Beham 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. @@ -16,9 +16,16 @@ Sim# allows modeling processes easily and with little boiler plate code. A proce HEAL, FH Upper Austria Andreas Beham https://github.com/abeham/SimSharp - Sim# 3.3.1 adds a RandChoice method to generate random samples from a weighted source of items. - -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). + Sim# 3.3.2 contains one enhancement and two bug fixes. + + Enhancement + 1) Adds method to obtain samples to the ISampleMonitor interface. + + Bug fixes - it fixes two bugs in PseudoRealtimeEnvironment when using it in + Realtime mode with a scaling factor other than 1. + 1) Getting the value of Now returned the elapsed time without scaling. + 2) When the simulation is stopped, the already elapsed time was wrongly scaled. + True true