Base models now fully rewritten using new components interface (general arrivals and service).
For distributions with multiple parameters, in order to get around the fact that tuple unpacking is currently not implemented in Python 3.x, one can write in their distributions as lambdas:
python
sim = RedundancyQueueSystem(seed=42, Arrival=random.expovariate, AArgs=0.1, Service=lambda w : random.uniform(0,w), SArgs=2,
parallelism=1, d=1, doPrint=True, df=True, infiniteJobs = False, numberJobs = 5)
sim.RunSim()
Hotfix: Fixed naming for GeneralArrivals
Hotfix 2: Fixed error in JSQd - registers properly with environment