diff options
author | Vincenzo Maffione <[email protected]> | 2017-02-06 18:24:50 +0100 |
---|---|---|
committer | Vincenzo Maffione <[email protected]> | 2017-02-06 18:24:50 +0100 |
commit | 4bfc9fee5365f2a1aa13c8f8669e2fa3e6264b92 (patch) | |
tree | ad688e408ae8d298e6b345ec195e6338d6ad582c /rhumba.py | |
parent | 38268b9218270ef57402e3c306d8b3bfdcd5103a (diff) | |
download | rumba-4bfc9fee5365f2a1aa13c8f8669e2fa3e6264b92.tar.gz rumba-4bfc9fee5365f2a1aa13c8f8669e2fa3e6264b92.zip |
move OuroborosExperiment class in its own file
Diffstat (limited to 'rhumba.py')
-rwxr-xr-x | rhumba.py | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -23,7 +23,6 @@ import emulab_support as es import jfed_support as js import abc import getpass -import ouroboros_support as our # Represents generic testbed info # @@ -324,18 +323,3 @@ class RLITEExperiment(Experiment): self.realize() print("[RLITE experiment] end") - -# An experiment over the Ouroboros implementation -class OuroborosExperiment(Experiment): - def __init__(self, testbed, nodes = list()): - Experiment.__init__(self, testbed, nodes) - - def run(self): - print("[Ouroboros experiment] start") - print("Creating resources...") - self.realize() - print("Setting up Ouroboros...") - our.setup_ouroboros(self.testbed, self.nodes) - print("Binding names...") - our.bind_names(self.testbed, self.nodes) - print("[Ouroboros experiment] end") |