no need to import random, or seed anymore
This commit is contained in:
parent
c65ea0075e
commit
94b3b47e87
1 changed files with 1 additions and 3 deletions
|
|
@ -1,5 +1,4 @@
|
|||
from pypdevs.simulator import Simulator
|
||||
import random
|
||||
|
||||
# Import the model we experiment with
|
||||
from system import QueueSystem
|
||||
|
|
@ -22,7 +21,6 @@ values = []
|
|||
# Loop over different configurations
|
||||
for i in range(1, max_processors):
|
||||
# Make sure each of them simulates exactly the same workload
|
||||
random.seed(1)
|
||||
# Set up the system
|
||||
procs = [speed] * i
|
||||
m = QueueSystem(mu=1.0/time, size=size, num=num, procs=procs)
|
||||
|
|
@ -30,7 +28,7 @@ for i in range(1, max_processors):
|
|||
# PythonPDEVS specific setup and configuration
|
||||
sim = Simulator(m)
|
||||
sim.setClassicDEVS()
|
||||
# sim.setVerbose() # <- uncomment to see what's going on
|
||||
sim.setVerbose() # <- uncomment to see what's going on
|
||||
sim.simulate()
|
||||
|
||||
# Gather information for output
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue