diff options
author | Marco Capitani <m.capitani@nextworks.it> | 2017-07-28 11:10:41 +0200 |
---|---|---|
committer | Marco Capitani <m.capitani@nextworks.it> | 2017-07-28 11:10:41 +0200 |
commit | 357fd2481ddb2a7b07eab9a98b4ab3b2d8a0b307 (patch) | |
tree | df14bc08df649021a7134c45bc3404068fe05f61 | |
parent | 9733485acfc611cea59119a096e528357aa438a5 (diff) | |
download | rumba-357fd2481ddb2a7b07eab9a98b4ab3b2d8a0b307.tar.gz rumba-357fd2481ddb2a7b07eab9a98b4ab3b2d8a0b307.zip |
model: Fixed some comments
-rw-r--r-- | rumba/model.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/rumba/model.py b/rumba/model.py index ffb67cc..ca35647 100644 --- a/rumba/model.py +++ b/rumba/model.py @@ -883,7 +883,6 @@ class Server: interval seconds. Hence, the average size should be interval * arrival_rate. """ - # WARNING! using numpy. To be discussed. number = poisson(self.arrival_rate * interval) number = int(min(number, self.max_clients)) l = [self.make_client_process() for _ in range(number)] @@ -924,7 +923,6 @@ class Server: # # @experiment: Experiment to use as input # @duration: Duration of the whole storyboard -# @testbed: The testbed the experiment is run on. # @servers: App servers available in the network # class StoryBoard: |