aboutsummaryrefslogtreecommitdiff
path: root/rhumba.py
diff options
context:
space:
mode:
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")
-
-