aboutsummaryrefslogtreecommitdiff
path: root/rhumba.py
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2017-02-06 18:35:24 +0100
committerVincenzo Maffione <v.maffione@gmail.com>2017-02-06 18:35:24 +0100
commit05b7264c9834293d97637194a9c447a1da0fd9a8 (patch)
treea7f328e55bb41a194952efcde14baabdf3c54a38 /rhumba.py
parent4bfc9fee5365f2a1aa13c8f8669e2fa3e6264b92 (diff)
downloadrumba-05b7264c9834293d97637194a9c447a1da0fd9a8.tar.gz
rumba-05b7264c9834293d97637194a9c447a1da0fd9a8.zip
move RLITEExperiment class in its own file
Diffstat (limited to 'rhumba.py')
-rwxr-xr-xrhumba.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/rhumba.py b/rhumba.py
index 1bd33a6..5688861 100755
--- a/rhumba.py
+++ b/rhumba.py
@@ -313,13 +313,3 @@ class IRATIExperiment(Experiment):
print("[IRATI experiment] end")
-# An experiment over the RLITE implementation
-class RLITEExperiment(Experiment):
- def __init__(self, testbed, nodes = list()):
- Experiment.__init__(self, testbed, nodes)
-
- def run(self):
- print("[RLITE experiment] start")
- self.realize()
- print("[RLITE experiment] end")
-