aboutsummaryrefslogtreecommitdiff
path: root/rhumba.py
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2017-02-06 18:40:18 +0100
committerVincenzo Maffione <v.maffione@gmail.com>2017-02-06 18:40:18 +0100
commit4a1221b5e20122717302d6518a057e5601936b08 (patch)
treed203b10a3977f78bb8f6ef27fb0d5048fef7665f /rhumba.py
parent05b7264c9834293d97637194a9c447a1da0fd9a8 (diff)
downloadrumba-4a1221b5e20122717302d6518a057e5601936b08.tar.gz
rumba-4a1221b5e20122717302d6518a057e5601936b08.zip
move IRATIExperiment class in its own file
Diffstat (limited to 'rhumba.py')
-rwxr-xr-xrhumba.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/rhumba.py b/rhumba.py
index 5688861..195bf15 100755
--- a/rhumba.py
+++ b/rhumba.py
@@ -301,15 +301,3 @@ class Experiment:
def run(self):
raise Exception('run() method not implemented')
-
-# An experiment over the IRATI implementation
-class IRATIExperiment(Experiment):
- def __init__(self, testbed, nodes = list()):
- Experiment.__init__(self, testbed, nodes)
-
- def run(self):
- print("[IRATI experiment] start")
- self.realize()
- print("[IRATI experiment] end")
-
-